summaryrefslogtreecommitdiffstats
path: root/chrome/gpu/gpu_view_x.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/gpu/gpu_view_x.h')
-rw-r--r--chrome/gpu/gpu_view_x.h4
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);
};