Index: media/base/video_renderer.h |
diff --git a/media/base/video_renderer.h b/media/base/video_renderer.h |
index e3d64ef9680587aab661f7a73b6a648567f73daa..fc544bc2931097c762f80515505455cab027e41f 100644 |
--- a/media/base/video_renderer.h |
+++ b/media/base/video_renderer.h |
@@ -57,10 +57,11 @@ class MEDIA_EXPORT VideoRenderer { |
// BUFFERING_HAVE_NOTHING while flushing is in progress. |
virtual void Flush(const base::Closure& callback) = 0; |
- // Starts playback by reading from |stream| and decoding and rendering video. |
+ // Starts playback at |timestamp| by reading from |stream| and decoding and |
+ // rendering video. |
// |
// Only valid to call after a successful Initialize() or Flush(). |
- virtual void StartPlaying() = 0; |
+ virtual void StartPlayingFrom(base::TimeDelta timestamp) = 0; |
private: |
DISALLOW_COPY_AND_ASSIGN(VideoRenderer); |