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

Unified Diff: webrtc/pc/peerconnection.h

Issue 2880323002: Move ownership of RtpTransportControllerSendInterface from Call to PeerConnection.
Patch Set: Delete shadowing member variables in BitrateEstimatorTest. Created 3 years, 7 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/ortc/rtptransportcontrolleradapter.cc ('k') | webrtc/pc/peerconnection.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/pc/peerconnection.h
diff --git a/webrtc/pc/peerconnection.h b/webrtc/pc/peerconnection.h
index 1e2ca3bb95487baa5d519967c3237314c0726c6c..fbb132e9a1e0114dff18339ded5d1a8f12c19357 100644
--- a/webrtc/pc/peerconnection.h
+++ b/webrtc/pc/peerconnection.h
@@ -31,6 +31,7 @@ namespace webrtc {
class MediaStreamObserver;
class VideoRtpReceiver;
class RtcEventLog;
+class RtpTransportControllerSendInterface;
// Populates |session_options| from |rtc_options|, and returns true if options
// are valid.
@@ -438,6 +439,12 @@ class PeerConnection : public PeerConnectionInterface,
bool remote_peer_supports_msid_ = false;
+ // TODO(nisse): Should use separate audio and video transports in
+ // the unbundled case. And potentially more than two in the
+ // completely unbundled case.
+ std::unique_ptr<RtpTransportControllerSendInterface>
+ rtp_transport_controller_send_;
+
std::unique_ptr<Call> call_;
std::unique_ptr<WebRtcSession> session_;
std::unique_ptr<StatsCollector> stats_; // A pointer is passed to senders_
« no previous file with comments | « webrtc/ortc/rtptransportcontrolleradapter.cc ('k') | webrtc/pc/peerconnection.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698