From a5a01107d952fd1244a16727e19e5ec817c125fb Mon Sep 17 00:00:00 2001 From: "fischman@chromium.org" Date: Wed, 6 Jun 2012 17:01:24 +0000 Subject: Add CORS-awareness to HTML5 media elements. This CL is dead code until WebMediaPlayerClientImpl starts calling the new 2-arg load() method, but this needs to land (and roll into WebKit DEPS) before WMPCI can be updated to call this 2-arg load(). BUG=123369 Review URL: https://chromiumcodereview.appspot.com/10543007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@140779 0039d316-1c4b-4281-b951-d872f2087c98 --- webkit/media/webmediaplayer_impl.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'webkit/media/webmediaplayer_impl.h') diff --git a/webkit/media/webmediaplayer_impl.h b/webkit/media/webmediaplayer_impl.h index 3b755be..7368f3a 100644 --- a/webkit/media/webmediaplayer_impl.h +++ b/webkit/media/webmediaplayer_impl.h @@ -110,7 +110,10 @@ class WebMediaPlayerImpl media::MediaLog* media_log); virtual ~WebMediaPlayerImpl(); + // TODO(fischman): remove the single-param version once WebKit stops calling + // it. virtual void load(const WebKit::WebURL& url); + virtual void load(const WebKit::WebURL& url, CORSMode cors_mode); virtual void cancelLoad(); // Playback controls. -- cgit v1.1