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

Unified Diff: webrtc/pc/rtptransport.h

Issue 2981513002: Wire up RTP keep-alive in ortc api. (Closed)
Patch Set: wip 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/pc/rtptransport.h
diff --git a/webrtc/pc/rtptransport.h b/webrtc/pc/rtptransport.h
index 87f29bac2a1be173411e6c086c5a7e064f2f0ab1..c43992d1d66299313d74897028bb6bd71afdef19 100644
--- a/webrtc/pc/rtptransport.h
+++ b/webrtc/pc/rtptransport.h
@@ -54,6 +54,10 @@ class RtpTransport : public RtpTransportInterface, public sigslot::has_slots<> {
RTCError SetRtcpParameters(const RtcpParameters& parameters) override;
RtcpParameters GetRtcpParameters() const override;
+ RTCError SetRtpTransportParameters(
+ const RtpTransportParameters& parameters) override;
+ RtpTransportParameters GetRtpTransportParameters() const override;
+
// Called whenever a transport's ready-to-send state changes. The argument
// is true if all used transports are ready to send. This is more specific
// than just "writable"; it means the last send didn't return ENOTCONN.
@@ -109,6 +113,7 @@ class RtpTransport : public RtpTransportInterface, public sigslot::has_slots<> {
bool rtcp_ready_to_send_ = false;
RtcpParameters rtcp_parameters_;
+ RtpTransportParameters rtp_transport_parameters_;
cricket::BundleFilter bundle_filter_;
};

Powered by Google App Engine
This is Rietveld 408576698