Index: talk/app/webrtc/videosourceinterface.h |
diff --git a/talk/app/webrtc/videosourceinterface.h b/talk/app/webrtc/videosourceinterface.h |
index 7ce0de8b7125a2d44a13884288def86efb2ca3ac..8b0176534e6d0cbb9223b213b8a7e5aad4c1e67a 100644 |
--- a/talk/app/webrtc/videosourceinterface.h |
+++ b/talk/app/webrtc/videosourceinterface.h |
@@ -55,7 +55,9 @@ class VideoSourceInterface : public MediaSourceInterface { |
virtual void RemoveSink( |
rtc::VideoSinkInterface<cricket::VideoFrame>* output) = 0; |
virtual const cricket::VideoOptions* options() const = 0; |
- virtual cricket::VideoRenderer* FrameInput() = 0; |
+ // TODO(nisse): Dummy implementation. Delete as soon as chrome's |
+ // MockVideoSource is updated. |
+ virtual cricket::VideoRenderer* FrameInput() { return nullptr; } |
protected: |
virtual ~VideoSourceInterface() {} |