From ba65b1f642d37bf33ed99c66498110007d249c65 Mon Sep 17 00:00:00 2001 From: "scherkus@chromium.org" Date: Tue, 2 Mar 2010 21:23:11 +0000 Subject: Laying down the groundwork for GPU video layers. This gets --enable-video-layering working when using the GPU backing store. No actual visuals yet, just IPC message passing and a lot of NOTIMPLEMENTED messages. BUG=33329 TEST=try it out and see if you get lots of NOTIMPLEMENTED messages corresponding with video playback Review URL: http://codereview.chromium.org/661344 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40434 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/gpu/gpu_view_x.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'chrome/gpu/gpu_view_x.h') diff --git a/chrome/gpu/gpu_view_x.h b/chrome/gpu/gpu_view_x.h index 4274f82..413548f 100644 --- a/chrome/gpu/gpu_view_x.h +++ b/chrome/gpu/gpu_view_x.h @@ -13,6 +13,7 @@ class GpuBackingStoreGLX; class GpuThread; +class GpuVideoLayerGLX; namespace gfx { class Rect; @@ -45,6 +46,7 @@ class GpuViewX private: // IPC message handlers. void OnNewBackingStore(int32 routing_id, const gfx::Size& size); + void OnNewVideoLayer(int32 routing_id, const gfx::Size& size); void OnWindowPainted(); GpuThread* gpu_thread_; @@ -54,6 +56,8 @@ class GpuViewX scoped_ptr backing_store_; + scoped_ptr video_layer_; + DISALLOW_COPY_AND_ASSIGN(GpuViewX); }; -- cgit v1.1