| Index: content/common/gpu/image_transport_surface.h
|
| diff --git a/content/common/gpu/image_transport_surface.h b/content/common/gpu/image_transport_surface.h
|
| index 348b5f6574b6c4234e942c382d1b84a320491571..b7c01cb9fc38eb55f59bf212fba96d34c1ef784e 100644
|
| --- a/content/common/gpu/image_transport_surface.h
|
| +++ b/content/common/gpu/image_transport_surface.h
|
| @@ -59,7 +59,7 @@ class ImageTransportSurface {
|
| public:
|
| ImageTransportSurface();
|
|
|
| - virtual void OnBufferPresented(uint32 sync_point) = 0;
|
| + virtual void OnBufferPresented(bool presented, uint32 sync_point) = 0;
|
| virtual void OnResizeViewACK() = 0;
|
| virtual void OnResize(gfx::Size size) = 0;
|
| virtual void OnSetFrontSurfaceIsProtected(bool is_protected,
|
| @@ -138,7 +138,7 @@ class ImageTransportHelper : public IPC::Listener {
|
| gpu::gles2::GLES2Decoder* Decoder();
|
|
|
| // IPC::Message handlers.
|
| - void OnBufferPresented(uint32 sync_point);
|
| + void OnBufferPresented(bool presented, uint32 sync_point);
|
| void OnResizeViewACK();
|
| void OnSetFrontSurfaceIsProtected(bool is_protected,
|
| uint32 protection_state_id);
|
| @@ -176,7 +176,8 @@ class PassThroughImageTransportSurface
|
| virtual bool OnMakeCurrent(gfx::GLContext* context) OVERRIDE;
|
|
|
| // ImageTransportSurface implementation.
|
| - virtual void OnBufferPresented(uint32 sync_point) OVERRIDE;
|
| + virtual void OnBufferPresented(bool /* presented */,
|
| + uint32 /* sync_point */) OVERRIDE;
|
| virtual void OnResizeViewACK() OVERRIDE;
|
| virtual void OnResize(gfx::Size size) OVERRIDE;
|
| virtual gfx::Size GetSize() OVERRIDE;
|
|
|