| Index: webrtc/api/videotracksource.cc
|
| diff --git a/webrtc/api/videotracksource.cc b/webrtc/api/videotracksource.cc
|
| index 17d32fbc71031890e360b2a970b500a89711e069..556f3c452f5a537b2065fd3fb942b73e7355d198 100644
|
| --- a/webrtc/api/videotracksource.cc
|
| +++ b/webrtc/api/videotracksource.cc
|
| @@ -15,7 +15,7 @@
|
| namespace webrtc {
|
|
|
| VideoTrackSource::VideoTrackSource(
|
| - rtc::VideoSourceInterface<cricket::VideoFrame>* source,
|
| + rtc::VideoSourceInterface<webrtc::VideoFrame>* source,
|
| bool remote)
|
| : source_(source), state_(kInitializing), remote_(remote) {
|
| worker_thread_checker_.DetachFromThread();
|
| @@ -33,7 +33,7 @@ void VideoTrackSource::OnSourceDestroyed() {
|
| }
|
|
|
| void VideoTrackSource::AddOrUpdateSink(
|
| - rtc::VideoSinkInterface<cricket::VideoFrame>* sink,
|
| + rtc::VideoSinkInterface<webrtc::VideoFrame>* sink,
|
| const rtc::VideoSinkWants& wants) {
|
| RTC_DCHECK(worker_thread_checker_.CalledOnValidThread());
|
| if (!source_) {
|
| @@ -43,7 +43,7 @@ void VideoTrackSource::AddOrUpdateSink(
|
| }
|
|
|
| void VideoTrackSource::RemoveSink(
|
| - rtc::VideoSinkInterface<cricket::VideoFrame>* sink) {
|
| + rtc::VideoSinkInterface<webrtc::VideoFrame>* sink) {
|
| RTC_DCHECK(worker_thread_checker_.CalledOnValidThread());
|
| if (!source_) {
|
| return;
|
|
|