| Index: webrtc/video/video_capture_input.h
|
| diff --git a/webrtc/video/video_capture_input.h b/webrtc/video/video_capture_input.h
|
| index 90d7a316a2e53a2afcc47a0af3b13609764e6df2..a47e8772c1d177adeca86d7e438e19f0244c0d90 100644
|
| --- a/webrtc/video/video_capture_input.h
|
| +++ b/webrtc/video/video_capture_input.h
|
| @@ -32,13 +32,12 @@ namespace webrtc {
|
| class Config;
|
| class OveruseFrameDetector;
|
| class SendStatisticsProxy;
|
| -class VideoRenderer;
|
|
|
| namespace internal {
|
| class VideoCaptureInput : public webrtc::VideoCaptureInput {
|
| public:
|
| VideoCaptureInput(rtc::Event* capture_event,
|
| - VideoRenderer* local_renderer,
|
| + rtc::VideoSinkInterface<VideoFrame>* local_renderer,
|
| SendStatisticsProxy* send_stats_proxy,
|
| OveruseFrameDetector* overuse_detector);
|
| ~VideoCaptureInput();
|
| @@ -50,7 +49,7 @@ class VideoCaptureInput : public webrtc::VideoCaptureInput {
|
| private:
|
| rtc::CriticalSection crit_;
|
|
|
| - VideoRenderer* const local_renderer_;
|
| + rtc::VideoSinkInterface<VideoFrame>* const local_renderer_;
|
| SendStatisticsProxy* const stats_proxy_;
|
| rtc::Event* const capture_event_;
|
|
|
|
|