| Index: media/renderers/video_renderer_impl.cc
 | 
| diff --git a/media/renderers/video_renderer_impl.cc b/media/renderers/video_renderer_impl.cc
 | 
| index 3e0698f14266106940b6c6047f240b2698995b46..627ada64a13ea9a148a0bbcf4c2b394e44b8f3fb 100644
 | 
| --- a/media/renderers/video_renderer_impl.cc
 | 
| +++ b/media/renderers/video_renderer_impl.cc
 | 
| @@ -22,12 +22,10 @@ namespace media {
 | 
|  
 | 
|  VideoRendererImpl::VideoRendererImpl(
 | 
|      const scoped_refptr<base::SingleThreadTaskRunner>& task_runner,
 | 
| -    VideoRendererSink* sink,
 | 
|      ScopedVector<VideoDecoder> decoders,
 | 
|      bool drop_frames,
 | 
|      const scoped_refptr<MediaLog>& media_log)
 | 
|      : task_runner_(task_runner),
 | 
| -      sink_(sink),
 | 
|        video_frame_stream_(
 | 
|            new VideoFrameStream(task_runner, decoders.Pass(), media_log)),
 | 
|        low_delay_(false),
 | 
| @@ -108,6 +106,7 @@ void VideoRendererImpl::Initialize(
 | 
|      const SetDecryptorReadyCB& set_decryptor_ready_cb,
 | 
|      const StatisticsCB& statistics_cb,
 | 
|      const BufferingStateCB& buffering_state_cb,
 | 
| +    const PaintCB& paint_cb,
 | 
|      const base::Closure& ended_cb,
 | 
|      const PipelineStatusCB& error_cb,
 | 
|      const WallClockTimeCB& wall_clock_time_cb,
 | 
| @@ -119,6 +118,7 @@ void VideoRendererImpl::Initialize(
 | 
|    DCHECK(!init_cb.is_null());
 | 
|    DCHECK(!statistics_cb.is_null());
 | 
|    DCHECK(!buffering_state_cb.is_null());
 | 
| +  DCHECK(!paint_cb.is_null());
 | 
|    DCHECK(!ended_cb.is_null());
 | 
|    DCHECK(!wall_clock_time_cb.is_null());
 | 
|    DCHECK_EQ(kUninitialized, state_);
 | 
| @@ -131,8 +131,7 @@ void VideoRendererImpl::Initialize(
 | 
|  
 | 
|    statistics_cb_ = statistics_cb;
 | 
|    buffering_state_cb_ = buffering_state_cb;
 | 
| -  paint_cb_ = base::Bind(&VideoRendererSink::PaintFrameUsingOldRenderingPath,
 | 
| -                         base::Unretained(sink_));
 | 
| +  paint_cb_ = paint_cb,
 | 
|    ended_cb_ = ended_cb;
 | 
|    error_cb_ = error_cb;
 | 
|    wall_clock_time_cb_ = wall_clock_time_cb;
 | 
| @@ -144,19 +143,6 @@ void VideoRendererImpl::Initialize(
 | 
|        set_decryptor_ready_cb, statistics_cb, waiting_for_decryption_key_cb);
 | 
|  }
 | 
|  
 | 
| -scoped_refptr<VideoFrame> VideoRendererImpl::Render(
 | 
| -    base::TimeTicks deadline_min,
 | 
| -    base::TimeTicks deadline_max) {
 | 
| -  // TODO(dalecurtis): Hook this up to the new VideoRendererAlgorithm.
 | 
| -  NOTIMPLEMENTED();
 | 
| -  return nullptr;
 | 
| -}
 | 
| -
 | 
| -void VideoRendererImpl::OnFrameDropped() {
 | 
| -  // TODO(dalecurtis): Hook this up to the new VideoRendererAlgorithm.
 | 
| -  NOTIMPLEMENTED();
 | 
| -}
 | 
| -
 | 
|  void VideoRendererImpl::CreateVideoThread() {
 | 
|    // This may fail and cause a crash if there are too many threads created in
 | 
|    // the current process. See http://crbug.com/443291
 | 
| 
 |