| Index: media/filters/video_renderer_impl.h
|
| diff --git a/media/filters/video_renderer_impl.h b/media/filters/video_renderer_impl.h
|
| index 4e3d5ed2a0695e11b03784c9b95e1d74e7cf833f..a1f027dd41e6adc1108406f6443ebb83ad65ac05 100644
|
| --- a/media/filters/video_renderer_impl.h
|
| +++ b/media/filters/video_renderer_impl.h
|
| @@ -68,7 +68,7 @@ class MEDIA_EXPORT VideoRendererImpl
|
| const PipelineStatusCB& error_cb,
|
| const TimeDeltaCB& get_time_cb) OVERRIDE;
|
| virtual void Flush(const base::Closure& callback) OVERRIDE;
|
| - virtual void StartPlaying() OVERRIDE;
|
| + virtual void StartPlayingFrom(base::TimeDelta timestamp) OVERRIDE;
|
|
|
| // PlatformThread::Delegate implementation.
|
| virtual void ThreadMain() OVERRIDE;
|
| @@ -140,7 +140,7 @@ class MEDIA_EXPORT VideoRendererImpl
|
|
|
| // Important detail: being in kPlaying doesn't imply that video is being
|
| // rendered. Rather, it means that the renderer is ready to go. The actual
|
| - // rendering of video is controlled by time advancing via |time_cb_|.
|
| + // rendering of video is controlled by time advancing via |get_time_cb_|.
|
| //
|
| // kUninitialized
|
| // | Initialize()
|
| @@ -151,7 +151,7 @@ class MEDIA_EXPORT VideoRendererImpl
|
| // |
|
| // V Decoders reset
|
| // kFlushed <------------------ kFlushing
|
| - // | StartPlaying() ^
|
| + // | StartPlayingFrom() ^
|
| // | |
|
| // | | Flush()
|
| // `---------> kPlaying --------'
|
|
|