summaryrefslogtreecommitdiffstats
path: root/webkit/glue/webmediaplayer.h
diff options
context:
space:
mode:
authorhclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-02-03 04:52:53 +0000
committerhclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-02-03 04:52:53 +0000
commitd43ed917b1f7e8f875d2ee2aa0587512e265e28e (patch)
tree64b04bda5e59e98a387235000779a2b050f9fa2b /webkit/glue/webmediaplayer.h
parent08e6413a6565ba434e1054a1df1c9fb778dad352 (diff)
downloadchromium_src-d43ed917b1f7e8f875d2ee2aa0587512e265e28e.zip
chromium_src-d43ed917b1f7e8f875d2ee2aa0587512e265e28e.tar.gz
chromium_src-d43ed917b1f7e8f875d2ee2aa0587512e265e28e.tar.bz2
Merged with latest media pipeline and cleaned up some style stuff.
Changed WebMediaPlayerDelegateImpl to contains a PipelineImpl object rather keeping a pointer to Pipeline interface. Also added code for task coordination between pipeline thread and main thread. Review URL: http://codereview.chromium.org/19481 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@9069 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/webmediaplayer.h')
-rw-r--r--webkit/glue/webmediaplayer.h12
1 files changed, 3 insertions, 9 deletions
diff --git a/webkit/glue/webmediaplayer.h b/webkit/glue/webmediaplayer.h
index f8e5a94..b786c7e 100644
--- a/webkit/glue/webmediaplayer.h
+++ b/webkit/glue/webmediaplayer.h
@@ -40,7 +40,7 @@ public:
virtual WebFrame* GetWebFrame() = 0;
// Notify the media player about network state change.
- virtual void NotifynetworkStateChange() = 0;
+ virtual void NotifyNetworkStateChange() = 0;
// Notify the media player about ready state change.
virtual void NotifyReadyStateChange() = 0;
@@ -54,16 +54,10 @@ public:
// Tell the media player to repaint itself.
virtual void Repaint() = 0;
- // Load a media resource.
- virtual void LoadMediaResource(const GURL& url) = 0;
-
- // Cancel loading the media resource.
- virtual void CancelLoad() = 0;
-
-private:
+ private:
DISALLOW_COPY_AND_ASSIGN(WebMediaPlayer);
};
} // namespace webkit_glue
-#endif // ifndef WEBKIT_GLUE_WEBMEDIAPLAYER_H_
+#endif // WEBKIT_GLUE_WEBMEDIAPLAYER_H_