From cf31d6fbef998e90f09a0004c9e429784396b855 Mon Sep 17 00:00:00 2001 From: "scherkus@chromium.org" Date: Tue, 26 Oct 2010 02:23:47 +0000 Subject: Add HasSingleOrigin() to WebDataSource. BUG=25432, 55745 TEST=test_shell_tests and layout tests Review URL: http://codereview.chromium.org/3984002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@63845 0039d316-1c4b-4281-b951-d872f2087c98 --- webkit/glue/webmediaplayer_impl.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'webkit/glue/webmediaplayer_impl.h') diff --git a/webkit/glue/webmediaplayer_impl.h b/webkit/glue/webmediaplayer_impl.h index 003d0b9..f1860f4 100644 --- a/webkit/glue/webmediaplayer_impl.h +++ b/webkit/glue/webmediaplayer_impl.h @@ -90,21 +90,21 @@ class WebMediaPlayerImpl : public WebKit::WebMediaPlayer, Proxy(MessageLoop* render_loop, WebMediaPlayerImpl* webmediaplayer); - // Public methods called from the video renderer. + // Methods for MediaFilter -> WebMediaPlayerImpl communication. void Repaint(); void SetVideoRenderer(scoped_refptr video_renderer); void SetDataSource(scoped_refptr data_source); - // Public methods called from WebMediaPlayerImpl. + // Methods for WebMediaPlayerImpl -> MediaFilter communication. void Paint(skia::PlatformCanvas* canvas, const gfx::Rect& dest_rect); void SetSize(const gfx::Rect& rect); void Detach(); void GetCurrentFrame(scoped_refptr* frame_out); void PutCurrentFrame(scoped_refptr frame); + bool HasSingleOrigin(); void AbortDataSource(); - // Public methods called from the pipeline via callback issued by - // WebMediaPlayerImpl. + // Methods for PipelineImpl -> WebMediaPlayerImpl communication. void PipelineInitializationCallback(); void PipelineSeekCallback(); void PipelineEndedCallback(); -- cgit v1.1