| Index: cc/gl_renderer.h
|
| diff --git a/cc/gl_renderer.h b/cc/gl_renderer.h
|
| index 7b1f8f489e658237a1cce1751fe6691a56006081..13dcaa53b78cccf90d32f20b6de646200fd29c19 100644
|
| --- a/cc/gl_renderer.h
|
| +++ b/cc/gl_renderer.h
|
| @@ -34,12 +34,7 @@ class CC_EXPORT GLRenderer :
|
| public DirectRenderer,
|
| public NON_EXPORTED_BASE(
|
| WebKit::WebGraphicsContext3D::
|
| - WebGraphicsSwapBuffersCompleteCallbackCHROMIUM),
|
| - public NON_EXPORTED_BASE(
|
| - WebKit::WebGraphicsContext3D::
|
| - WebGraphicsMemoryAllocationChangedCallbackCHROMIUM),
|
| - public NON_EXPORTED_BASE(
|
| - WebKit::WebGraphicsContext3D::WebGraphicsContextLostCallback) {
|
| + WebGraphicsMemoryAllocationChangedCallbackCHROMIUM) {
|
| public:
|
| static scoped_ptr<GLRenderer> Create(RendererClient* client,
|
| OutputSurface* output_surface,
|
| @@ -53,9 +48,6 @@ class CC_EXPORT GLRenderer :
|
|
|
| virtual void ViewportChanged() OVERRIDE;
|
|
|
| - virtual void ReceiveCompositorFrameAck(const CompositorFrameAck& ack)
|
| - OVERRIDE;
|
| -
|
| // Waits for rendering to finish.
|
| virtual void Finish() OVERRIDE;
|
|
|
| @@ -162,11 +154,6 @@ class CC_EXPORT GLRenderer :
|
| void CleanupSharedObjects();
|
|
|
| // WebKit::
|
| - // WebGraphicsContext3D::WebGraphicsSwapBuffersCompleteCallbackCHROMIUM
|
| - // implementation.
|
| - virtual void onSwapBuffersComplete() OVERRIDE;
|
| -
|
| - // WebKit::
|
| // WebGraphicsContext3D::WebGraphicsMemoryAllocationChangedCallbackCHROMIUM
|
| // implementation.
|
| virtual void onMemoryAllocationChanged(
|
| @@ -175,9 +162,6 @@ class CC_EXPORT GLRenderer :
|
| void EnsureBackbuffer();
|
| void EnforceMemoryPolicy();
|
|
|
| - // WebGraphicsContext3D::WebGraphicsContextLostCallback implementation.
|
| - virtual void onContextLost() OVERRIDE;
|
| -
|
| RendererCapabilities capabilities_;
|
|
|
| unsigned offscreen_framebuffer_id_;
|
|
|