Index: webrtc/pc/channel.cc |
diff --git a/webrtc/pc/channel.cc b/webrtc/pc/channel.cc |
index d9eb9b6facc7e5d3bedef03b9cbafc892b2c4512..92945fd92b6d4a21c953b23f680aee5040ba589d 100644 |
--- a/webrtc/pc/channel.cc |
+++ b/webrtc/pc/channel.cc |
@@ -1865,7 +1865,7 @@ VideoChannel::~VideoChannel() { |
} |
bool VideoChannel::SetSink(uint32_t ssrc, |
- rtc::VideoSinkInterface<VideoFrame>* sink) { |
+ rtc::VideoSinkInterface<webrtc::VideoFrame>* sink) { |
worker_thread()->Invoke<void>( |
RTC_FROM_HERE, |
Bind(&VideoMediaChannel::SetSink, media_channel(), ssrc, sink)); |
@@ -1876,7 +1876,7 @@ bool VideoChannel::SetVideoSend( |
uint32_t ssrc, |
bool mute, |
const VideoOptions* options, |
- rtc::VideoSourceInterface<cricket::VideoFrame>* source) { |
+ rtc::VideoSourceInterface<webrtc::VideoFrame>* source) { |
return InvokeOnWorker(RTC_FROM_HERE, |
Bind(&VideoMediaChannel::SetVideoSend, media_channel(), |
ssrc, mute, options, source)); |