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

Unified Diff: talk/session/media/channel.h

Issue 1378513003: Change 'mute' parameter of MediaChannel::SetAudioSend()/SetVideoSend() to 'enable'. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: rebase Created 5 years, 3 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 | « talk/media/webrtc/webrtcvoiceengine.cc ('k') | talk/session/media/channel.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: talk/session/media/channel.h
diff --git a/talk/session/media/channel.h b/talk/session/media/channel.h
index dec5c985ae164cef0968c6ab3741f65974ba0422..ac8736e53fc68b4b05efa8dafff30b337be5adc4 100644
--- a/talk/session/media/channel.h
+++ b/talk/session/media/channel.h
@@ -343,7 +343,7 @@ class VoiceChannel : public BaseChannel {
// Configure sending media on the stream with SSRC |ssrc|
// If there is only one sending stream SSRC 0 can be used.
bool SetAudioSend(uint32 ssrc,
- bool mute,
+ bool enable,
const AudioOptions* options,
AudioRenderer* renderer);
@@ -486,7 +486,7 @@ class VideoChannel : public BaseChannel {
// Configure sending media on the stream with SSRC |ssrc|
// If there is only one sending stream SSRC 0 can be used.
- bool SetVideoSend(uint32 ssrc, bool mute, const VideoOptions* options);
+ bool SetVideoSend(uint32 ssrc, bool enable, const VideoOptions* options);
private:
typedef std::map<uint32, VideoCapturer*> ScreencastMap;
« no previous file with comments | « talk/media/webrtc/webrtcvoiceengine.cc ('k') | talk/session/media/channel.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698