diff options
author | scherkus@chromium.org <scherkus@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-02 21:23:11 +0000 |
---|---|---|
committer | scherkus@chromium.org <scherkus@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-02 21:23:11 +0000 |
commit | ba65b1f642d37bf33ed99c66498110007d249c65 (patch) | |
tree | 08baa793c615ec0622e3e3191339ffb47c193434 /chrome/gpu/gpu_view_x.h | |
parent | 857bff35929a3af15166bd3e7f885e1d7113c050 (diff) | |
download | chromium_src-ba65b1f642d37bf33ed99c66498110007d249c65.zip chromium_src-ba65b1f642d37bf33ed99c66498110007d249c65.tar.gz chromium_src-ba65b1f642d37bf33ed99c66498110007d249c65.tar.bz2 |
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
Diffstat (limited to 'chrome/gpu/gpu_view_x.h')
-rw-r--r-- | chrome/gpu/gpu_view_x.h | 4 |
1 files changed, 4 insertions, 0 deletions
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<GpuBackingStoreGLX> backing_store_; + scoped_ptr<GpuVideoLayerGLX> video_layer_; + DISALLOW_COPY_AND_ASSIGN(GpuViewX); }; |