| Index: talk/app/webrtc/videosourceinterface.h
 | 
| diff --git a/talk/app/webrtc/videosourceinterface.h b/talk/app/webrtc/videosourceinterface.h
 | 
| index a90e3d5a48f5eeb773db59e5e2ab35f728757d6c..40393100166b8fa47f205d57f64fb6180c50c5ad 100644
 | 
| --- a/talk/app/webrtc/videosourceinterface.h
 | 
| +++ b/talk/app/webrtc/videosourceinterface.h
 | 
| @@ -49,8 +49,10 @@ class VideoSourceInterface : public MediaSourceInterface {
 | 
|    virtual void Restart() = 0;
 | 
|  
 | 
|    // Adds |output| to the source to receive frames.
 | 
| -  virtual void AddSink(cricket::VideoRenderer* output) = 0;
 | 
| -  virtual void RemoveSink(cricket::VideoRenderer* output) = 0;
 | 
| +  virtual void AddSink(
 | 
| +      rtc::VideoSinkInterface<cricket::VideoFrame>* output) = 0;
 | 
| +  virtual void RemoveSink(
 | 
| +      rtc::VideoSinkInterface<cricket::VideoFrame>* output) = 0;
 | 
|    virtual const cricket::VideoOptions* options() const = 0;
 | 
|    virtual cricket::VideoRenderer* FrameInput() = 0;
 | 
|  
 | 
| 
 |