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

Unified Diff: webrtc/pc/channelmanager.h

Issue 2622613004: Refactoring of RTCP options in BaseChannel. (Closed)
Patch Set: Minor renaming/adding a comment, which makes sense to do after this refactoring. Created 3 years, 11 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/pc/channel_unittest.cc ('k') | webrtc/pc/channelmanager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/pc/channelmanager.h
diff --git a/webrtc/pc/channelmanager.h b/webrtc/pc/channelmanager.h
index 89af44afeea59a6a7d0503a53e03997884ebf7b9..2ee72270803e6d9bdfd9eeaf626e837632f0435a 100644
--- a/webrtc/pc/channelmanager.h
+++ b/webrtc/pc/channelmanager.h
@@ -95,7 +95,7 @@ class ChannelManager {
rtc::Thread* signaling_thread,
const std::string& content_name,
const std::string* bundle_transport_name,
- bool rtcp,
+ bool rtcp_mux_required,
bool srtp_required,
const AudioOptions& options);
// Destroys a voice channel created with the Create API.
@@ -109,7 +109,7 @@ class ChannelManager {
rtc::Thread* signaling_thread,
const std::string& content_name,
const std::string* bundle_transport_name,
- bool rtcp,
+ bool rtcp_mux_required,
bool srtp_required,
const VideoOptions& options);
// Destroys a video channel created with the Create API.
@@ -121,7 +121,7 @@ class ChannelManager {
rtc::Thread* signaling_thread,
const std::string& content_name,
const std::string* bundle_transport_name,
- bool rtcp,
+ bool rtcp_mux_required,
bool srtp_required);
// Destroys a data channel created with the Create API.
void DestroyRtpDataChannel(RtpDataChannel* data_channel);
@@ -172,7 +172,7 @@ class ChannelManager {
rtc::Thread* signaling_thread,
const std::string& content_name,
const std::string* bundle_transport_name,
- bool rtcp,
+ bool rtcp_mux_required,
bool srtp_required,
const AudioOptions& options);
void DestroyVoiceChannel_w(VoiceChannel* voice_channel);
@@ -183,7 +183,7 @@ class ChannelManager {
rtc::Thread* signaling_thread,
const std::string& content_name,
const std::string* bundle_transport_name,
- bool rtcp,
+ bool rtcp_mux_required,
bool srtp_required,
const VideoOptions& options);
void DestroyVideoChannel_w(VideoChannel* video_channel);
@@ -194,7 +194,7 @@ class ChannelManager {
rtc::Thread* signaling_thread,
const std::string& content_name,
const std::string* bundle_transport_name,
- bool rtcp,
+ bool rtcp_mux_required,
bool srtp_required);
void DestroyRtpDataChannel_w(RtpDataChannel* data_channel);
« no previous file with comments | « webrtc/pc/channel_unittest.cc ('k') | webrtc/pc/channelmanager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698