Index: webrtc/pc/channel.cc |
diff --git a/webrtc/pc/channel.cc b/webrtc/pc/channel.cc |
index 8e916f12793802f245313b3c088050b128961cdc..4ec3b6dbd2088756b199c6b0b4823690a3f90392 100644 |
--- a/webrtc/pc/channel.cc |
+++ b/webrtc/pc/channel.cc |
@@ -1675,16 +1675,12 @@ bool VideoChannel::SetSink(uint32_t ssrc, |
return true; |
} |
-bool VideoChannel::SetCapturer(uint32_t ssrc, VideoCapturer* capturer) { |
- return InvokeOnWorker(Bind(&VideoMediaChannel::SetCapturer, |
- media_channel(), ssrc, capturer)); |
-} |
- |
bool VideoChannel::SetVideoSend(uint32_t ssrc, |
bool mute, |
- const VideoOptions* options) { |
+ const VideoOptions* options, |
+ VideoCapturer* capturer) { |
return InvokeOnWorker(Bind(&VideoMediaChannel::SetVideoSend, media_channel(), |
- ssrc, mute, options)); |
+ ssrc, mute, options, capturer)); |
} |
webrtc::RtpParameters VideoChannel::GetRtpParameters(uint32_t ssrc) const { |