Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(55)

Unified Diff: content/renderer/render_view_impl.h

Issue 10382048: create WebMediaPlayer based on URL (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/renderer/media/video_capture_relay.cc ('k') | content/renderer/render_view_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/render_view_impl.h
===================================================================
--- content/renderer/render_view_impl.h (revision 135772)
+++ content/renderer/render_view_impl.h (working copy)
@@ -455,7 +455,8 @@
const WebKit::WebString& name, unsigned long long documentId);
virtual WebKit::WebMediaPlayer* createMediaPlayer(
WebKit::WebFrame* frame,
- WebKit::WebMediaPlayerClient* client);
+ WebKit::WebMediaPlayerClient* client,
+ const WebKit::WebURL& url);
virtual WebKit::WebApplicationCacheHost* createApplicationCacheHost(
WebKit::WebFrame* frame,
WebKit::WebApplicationCacheHostClient* client);
@@ -654,9 +655,9 @@
// webkit_media::WebMediaPlayerDelegate implementation -----------------------
- virtual void DidPlay(webkit_media::WebMediaPlayerImpl* player) OVERRIDE;
- virtual void DidPause(webkit_media::WebMediaPlayerImpl* player) OVERRIDE;
- virtual void PlayerGone(webkit_media::WebMediaPlayerImpl* player) OVERRIDE;
+ virtual void DidPlay(WebKit::WebMediaPlayer* player) OVERRIDE;
+ virtual void DidPause(WebKit::WebMediaPlayer* player) OVERRIDE;
+ virtual void PlayerGone(WebKit::WebMediaPlayer* player) OVERRIDE;
// Please do not add your stuff randomly to the end here. If there is an
// appropriate section, add it there. If not, there are some random functions
« no previous file with comments | « content/renderer/media/video_capture_relay.cc ('k') | content/renderer/render_view_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698