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

Unified Diff: webrtc/pc/channelmanager.h

Issue 1972493002: Do not create a temporary transport channel when using max-bundle (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebased on top of the network thread change Created 4 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
Index: webrtc/pc/channelmanager.h
diff --git a/webrtc/pc/channelmanager.h b/webrtc/pc/channelmanager.h
index 1ecebf8cfaea8b51ee99e7da6eaa119a4465bf1f..9e5280bf4b78067d7c5a3dc0cb8645629fb094ee 100644
--- a/webrtc/pc/channelmanager.h
+++ b/webrtc/pc/channelmanager.h
@@ -91,6 +91,7 @@ class ChannelManager {
webrtc::MediaControllerInterface* media_controller,
TransportController* transport_controller,
const std::string& content_name,
+ const std::string* bundle_transport_name,
bool rtcp,
const AudioOptions& options);
// Destroys a voice channel created with the Create API.
@@ -101,12 +102,14 @@ class ChannelManager {
webrtc::MediaControllerInterface* media_controller,
TransportController* transport_controller,
const std::string& content_name,
+ const std::string* bundle_transport_name,
bool rtcp,
const VideoOptions& options);
// Destroys a video channel created with the Create API.
void DestroyVideoChannel(VideoChannel* video_channel);
DataChannel* CreateDataChannel(TransportController* transport_controller,
const std::string& content_name,
+ const std::string* bundle_transport_name,
bool rtcp,
DataChannelType data_channel_type);
// Destroys a data channel created with the Create API.
@@ -158,6 +161,7 @@ class ChannelManager {
webrtc::MediaControllerInterface* media_controller,
TransportController* transport_controller,
const std::string& content_name,
+ const std::string* bundle_transport_name,
bool rtcp,
const AudioOptions& options);
void DestroyVoiceChannel_w(VoiceChannel* voice_channel);
@@ -165,11 +169,13 @@ class ChannelManager {
webrtc::MediaControllerInterface* media_controller,
TransportController* transport_controller,
const std::string& content_name,
+ const std::string* bundle_transport_name,
bool rtcp,
const VideoOptions& options);
void DestroyVideoChannel_w(VideoChannel* video_channel);
DataChannel* CreateDataChannel_w(TransportController* transport_controller,
const std::string& content_name,
+ const std::string* bundle_transport_name,
bool rtcp,
DataChannelType data_channel_type);
void DestroyDataChannel_w(DataChannel* data_channel);

Powered by Google App Engine
This is Rietveld 408576698