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

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: 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 72a2f056b5a4c0b6bb797f1a5792f575bb8a9ee3..9ab739a59ec189102cdf9a8bc4e669b9f5792817 100644
--- a/webrtc/pc/channelmanager.h
+++ b/webrtc/pc/channelmanager.h
@@ -80,6 +80,7 @@ class ChannelManager {
webrtc::MediaControllerInterface* media_controller,
TransportController* transport_controller,
const std::string& content_name,
+ const std::string& transport_name,
bool rtcp,
const AudioOptions& options);
// Destroys a voice channel created with the Create API.
@@ -90,12 +91,14 @@ class ChannelManager {
webrtc::MediaControllerInterface* media_controller,
TransportController* transport_controller,
const std::string& content_name,
+ const std::string& 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& transport_name,
bool rtcp,
DataChannelType data_channel_type);
// Destroys a data channel created with the Create API.
@@ -146,6 +149,7 @@ class ChannelManager {
webrtc::MediaControllerInterface* media_controller,
TransportController* transport_controller,
const std::string& content_name,
+ const std::string& transport_name,
bool rtcp,
const AudioOptions& options);
void DestroyVoiceChannel_w(VoiceChannel* voice_channel);
@@ -153,11 +157,13 @@ class ChannelManager {
webrtc::MediaControllerInterface* media_controller,
TransportController* transport_controller,
const std::string& content_name,
+ const std::string& 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& transport_name,
bool rtcp,
DataChannelType data_channel_type);
void DestroyDataChannel_w(DataChannel* data_channel);

Powered by Google App Engine
This is Rietveld 408576698