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

Unified Diff: webrtc/pc/channelmanager.h

Issue 2537343003: Removing "crypto_required" from MediaContentDescription. (Closed)
Patch Set: Created 4 years, 1 month 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 15a3752c44a730ae85ecaac07576825a990ffc8c..9d9b459992a4c27d1dc4d88c974f91acb9f3d8e6 100644
--- a/webrtc/pc/channelmanager.h
+++ b/webrtc/pc/channelmanager.h
@@ -94,6 +94,7 @@ class ChannelManager {
const std::string& content_name,
const std::string* bundle_transport_name,
bool rtcp,
+ bool secure_required,
const AudioOptions& options);
// Destroys a voice channel created with the Create API.
void DestroyVoiceChannel(VoiceChannel* voice_channel);
@@ -105,6 +106,7 @@ class ChannelManager {
const std::string& content_name,
const std::string* bundle_transport_name,
bool rtcp,
+ bool secure_required,
const VideoOptions& options);
// Destroys a video channel created with the Create API.
void DestroyVideoChannel(VideoChannel* video_channel);
@@ -112,6 +114,7 @@ class ChannelManager {
const std::string& content_name,
const std::string* bundle_transport_name,
bool rtcp,
+ bool secure_required,
DataChannelType data_channel_type);
// Destroys a data channel created with the Create API.
void DestroyDataChannel(DataChannel* data_channel);
@@ -161,6 +164,7 @@ class ChannelManager {
const std::string& content_name,
const std::string* bundle_transport_name,
bool rtcp,
+ bool secure_required,
const AudioOptions& options);
void DestroyVoiceChannel_w(VoiceChannel* voice_channel);
VideoChannel* CreateVideoChannel_w(
@@ -169,12 +173,14 @@ class ChannelManager {
const std::string& content_name,
const std::string* bundle_transport_name,
bool rtcp,
+ bool secure_required,
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,
+ bool secure_required,
DataChannelType data_channel_type);
pthatcher1 2016/11/30 19:16:17 Same here. We should be able to just assume this
Taylor Brandstetter 2016/12/01 02:41:34 I'm not sure what you're referring to when you say
void DestroyDataChannel_w(DataChannel* data_channel);

Powered by Google App Engine
This is Rietveld 408576698