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

Unified Diff: webrtc/pc/srtptransport.h

Issue 2981513002: Wire up RTP keep-alive in ortc api. (Closed)
Patch Set: deps, again Created 3 years, 4 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
« no previous file with comments | « webrtc/pc/rtptransport_unittest.cc ('k') | webrtc/test/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/pc/srtptransport.h
diff --git a/webrtc/pc/srtptransport.h b/webrtc/pc/srtptransport.h
index be746d50c81aa4dbc4fcf322d2eacc0092d6b559..58ef205f872cc397474e65fd377403dae43dfaef 100644
--- a/webrtc/pc/srtptransport.h
+++ b/webrtc/pc/srtptransport.h
@@ -78,12 +78,12 @@ class SrtpTransport : public RtpTransportInternal {
rtp_transport_->AddHandledPayloadType(payload_type);
}
- RtcpParameters GetRtcpParameters() const override {
- return rtp_transport_->GetRtcpParameters();
+ RTCError SetParameters(const RtpTransportParameters& parameters) override {
+ return rtp_transport_->SetParameters(parameters);
}
- RTCError SetRtcpParameters(const RtcpParameters& parameters) override {
- return rtp_transport_->SetRtcpParameters(parameters);
+ RtpTransportParameters GetParameters() const override {
+ return rtp_transport_->GetParameters();
}
// TODO(zstein): Remove this when we remove RtpTransportAdapter.
« no previous file with comments | « webrtc/pc/rtptransport_unittest.cc ('k') | webrtc/test/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698