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

Unified Diff: webrtc/pc/rtptransport.cc

Issue 2981513002: Wire up RTP keep-alive in ortc api. (Closed)
Patch Set: . 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
« webrtc/api/ortc/rtptransportinterface.h ('K') | « webrtc/pc/rtptransport.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/pc/rtptransport.cc
diff --git a/webrtc/pc/rtptransport.cc b/webrtc/pc/rtptransport.cc
index 6b0141fc8e92986e2ec690360f3a97805cf17ee6..c8cc31bb441e2bfa23361d97b5427ca04b226afe 100644
--- a/webrtc/pc/rtptransport.cc
+++ b/webrtc/pc/rtptransport.cc
@@ -135,6 +135,16 @@ RtcpParameters RtpTransport::GetRtcpParameters() const {
return rtcp_parameters_;
}
+RTCError RtpTransport::SetRtpTransportParameters(
+ const RtpTransportParameters& parameters) {
+ rtp_transport_parameters_ = parameters;
+ return RTCError::OK();
+}
+
+RtpTransportParameters RtpTransport::GetRtpTransportParameters() const {
+ return rtp_transport_parameters_;
+}
+
RtpTransportAdapter* RtpTransport::GetInternal() {
return nullptr;
}
« webrtc/api/ortc/rtptransportinterface.h ('K') | « webrtc/pc/rtptransport.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698