Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1256)

Unified Diff: webrtc/ortc/rtptransportcontrolleradapter.h

Issue 2981513002: Wire up RTP keep-alive in ortc api. (Closed)
Patch Set: Test Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webrtc/ortc/rtptransportcontrolleradapter.h
diff --git a/webrtc/ortc/rtptransportcontrolleradapter.h b/webrtc/ortc/rtptransportcontrolleradapter.h
index 9728c3968aaf94fb232e6e205354fa96c906ac99..3122b4a8166a94096cbae7b2462f0ebd4057ade6 100644
--- a/webrtc/ortc/rtptransportcontrolleradapter.h
+++ b/webrtc/ortc/rtptransportcontrolleradapter.h
@@ -77,12 +77,12 @@ class RtpTransportControllerAdapter : public RtpTransportControllerInterface,
// these methods return proxies that will safely call methods on the correct
// thread.
RTCErrorOr<std::unique_ptr<RtpTransportInterface>> CreateProxiedRtpTransport(
- const RtcpParameters& rtcp_parameters,
+ const RtpTransportParameters& rtcp_parameters,
PacketTransportInterface* rtp,
PacketTransportInterface* rtcp);
RTCErrorOr<std::unique_ptr<SrtpTransportInterface>>
- CreateProxiedSrtpTransport(const RtcpParameters& rtcp_parameters,
+ CreateProxiedSrtpTransport(const RtpTransportParameters& rtcp_parameters,
PacketTransportInterface* rtp,
PacketTransportInterface* rtcp);
@@ -100,8 +100,10 @@ class RtpTransportControllerAdapter : public RtpTransportControllerInterface,
rtc::Thread* signaling_thread() const { return signaling_thread_; }
rtc::Thread* worker_thread() const { return worker_thread_; }
- RTCError SetRtcpParameters(const RtcpParameters& parameters,
- RtpTransportInterface* inner_transport);
+ // |parameters.keepalive| will be set for ALL rtp transports in the call.
Taylor Brandstetter 2017/08/02 00:12:56 nit: Capitalize RTP.
sprang_webrtc 2017/08/02 16:45:08 Done.
+ RTCError SetRtpTransportAndRtcpParameters(
+ const RtpTransportParameters& parameters,
+ RtpTransportInterface* inner_transport);
cricket::VoiceChannel* voice_channel() { return voice_channel_; }
cricket::VideoChannel* video_channel() { return video_channel_; }

Powered by Google App Engine
This is Rietveld 408576698