| Index: webkit/glue/webmediaplayer_impl.h
|
| diff --git a/webkit/glue/webmediaplayer_impl.h b/webkit/glue/webmediaplayer_impl.h
|
| index b8a44b078d1af3e96081f3bbcf3a66c2d95c015f..c13d30fd1f9f15540e4f94e9d6fa5418a7b632c6 100644
|
| --- a/webkit/glue/webmediaplayer_impl.h
|
| +++ b/webkit/glue/webmediaplayer_impl.h
|
| @@ -252,6 +252,15 @@ class WebMediaPlayerImpl : public WebKit::WebMediaPlayer,
|
| scoped_ptr<media::PipelineImpl> pipeline_;
|
| base::Thread pipeline_thread_;
|
|
|
| + // Playback state.
|
| + //
|
| + // TODO(scherkus): we have these because Pipeline favours the simplicity of a
|
| + // single "playback rate" over worrying about paused/stopped etc... It forces
|
| + // all clients to manage the pause+playback rate externally, but is that
|
| + // really a bad thing?
|
| + bool paused_;
|
| + float playback_rate_;
|
| +
|
| WebKit::WebMediaPlayerClient* client_;
|
|
|
| scoped_refptr<Proxy> proxy_;
|
|
|