diff options
Diffstat (limited to 'ui/gfx/compositor/compositor_gl.h')
-rw-r--r-- | ui/gfx/compositor/compositor_gl.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ui/gfx/compositor/compositor_gl.h b/ui/gfx/compositor/compositor_gl.h index c89d47b..cee38c4 100644 --- a/ui/gfx/compositor/compositor_gl.h +++ b/ui/gfx/compositor/compositor_gl.h @@ -93,7 +93,9 @@ class COMPOSITOR_EXPORT TextureGL : public Texture { class COMPOSITOR_EXPORT CompositorGL : public Compositor { public: - CompositorGL(gfx::AcceleratedWidget widget, const gfx::Size& size); + CompositorGL(CompositorDelegate* delegate, + gfx::AcceleratedWidget widget, + const gfx::Size& size); virtual ~CompositorGL(); void MakeCurrent(); @@ -108,7 +110,6 @@ class COMPOSITOR_EXPORT CompositorGL : public Compositor { virtual void NotifyStart() OVERRIDE; virtual void NotifyEnd() OVERRIDE; virtual void Blur(const gfx::Rect& bounds) OVERRIDE; - virtual void SchedulePaint() OVERRIDE; // The GL context used for compositing. scoped_refptr<gfx::GLSurface> gl_surface_; |