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

Unified Diff: webrtc/call/call.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/call/bitrate_estimator_tests.cc ('k') | webrtc/call/call.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/call/call.h
diff --git a/webrtc/call/call.h b/webrtc/call/call.h
index f67b6907e5f7a1c3465b984dc23de768f6130631..5719ac08e623f44da7752fb516a0d70a21f41cad 100644
--- a/webrtc/call/call.h
+++ b/webrtc/call/call.h
@@ -30,6 +30,8 @@ namespace webrtc {
class AudioProcessing;
class RtcEventLog;
+class RtpTransportControllerSendInterface;
+class SendSideCongestionController;
enum class MediaType {
ANY,
@@ -86,6 +88,12 @@ class Call {
// RtcEventLog to use for this call. Required.
// Use webrtc::RtcEventLog::CreateNull() for a null implementation.
RtcEventLog* event_log = nullptr;
+
+ RtpTransportControllerSendInterface* audio_rtp_transport_send = nullptr;
+ RtpTransportControllerSendInterface* video_rtp_transport_send = nullptr;
+ // Even if we have separate transports (unbundled case), we can have only
+ // one congestion controller.
+ SendSideCongestionController* send_side_cc = nullptr;
};
struct Stats {
« no previous file with comments | « webrtc/call/bitrate_estimator_tests.cc ('k') | webrtc/call/call.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698