| Index: webkit/glue/webmediaplayer_impl.h
|
| ===================================================================
|
| --- webkit/glue/webmediaplayer_impl.h (revision 21652)
|
| +++ webkit/glue/webmediaplayer_impl.h (working copy)
|
| @@ -106,6 +106,7 @@
|
| // WebMediaPlayerImpl.
|
| void PipelineInitializationCallback();
|
| void PipelineSeekCallback();
|
| + void PipelineErrorCallback();
|
|
|
| private:
|
| // Invoke |webmediaplayer_| to perform a repaint.
|
| @@ -117,6 +118,9 @@
|
| // Notify |webmediaplayer_| that a seek has finished.
|
| void PipelineSeekTask();
|
|
|
| + // Notify |webmediaplayer_| that a pipeline error has been set.
|
| + void PipelineErrorTask();
|
| +
|
| // The render message loop where WebKit lives.
|
| MessageLoop* render_loop_;
|
| WebMediaPlayerImpl* webmediaplayer_;
|
| @@ -213,6 +217,8 @@
|
|
|
| void OnPipelineSeek();
|
|
|
| + void OnPipelineError();
|
| +
|
| private:
|
| // Helpers that set the network/ready state and notifies the client if
|
| // they've changed.
|
|
|