| Index: webrtc/api/videotracksource.h
|
| diff --git a/webrtc/api/videotracksource.h b/webrtc/api/videotracksource.h
|
| index 67e764fd40e5ad48f45d5fc746027263b408ae4b..a3b8b88a873becda2f77bae066a57dd8f3318419 100644
|
| --- a/webrtc/api/videotracksource.h
|
| +++ b/webrtc/api/videotracksource.h
|
| @@ -22,7 +22,7 @@ namespace webrtc {
|
|
|
| class VideoTrackSource : public Notifier<VideoTrackSourceInterface> {
|
| public:
|
| - VideoTrackSource(rtc::VideoSourceInterface<cricket::VideoFrame>* source,
|
| + VideoTrackSource(rtc::VideoSourceInterface<webrtc::VideoFrame>* source,
|
| bool remote);
|
| void SetState(SourceState new_state);
|
| // OnSourceDestroyed clears this instance pointer to |source_|. It is useful
|
| @@ -39,13 +39,13 @@ class VideoTrackSource : public Notifier<VideoTrackSourceInterface> {
|
|
|
| bool GetStats(Stats* stats) override { return false; }
|
|
|
| - void AddOrUpdateSink(rtc::VideoSinkInterface<cricket::VideoFrame>* sink,
|
| + void AddOrUpdateSink(rtc::VideoSinkInterface<webrtc::VideoFrame>* sink,
|
| const rtc::VideoSinkWants& wants) override;
|
| - void RemoveSink(rtc::VideoSinkInterface<cricket::VideoFrame>* sink) override;
|
| + void RemoveSink(rtc::VideoSinkInterface<webrtc::VideoFrame>* sink) override;
|
|
|
| private:
|
| rtc::ThreadChecker worker_thread_checker_;
|
| - rtc::VideoSourceInterface<cricket::VideoFrame>* source_;
|
| + rtc::VideoSourceInterface<webrtc::VideoFrame>* source_;
|
| cricket::VideoOptions options_;
|
| SourceState state_;
|
| const bool remote_;
|
|
|