| Index: content/renderer/gpu/compositor_output_surface.h
|
| diff --git a/content/renderer/gpu/compositor_output_surface.h b/content/renderer/gpu/compositor_output_surface.h
|
| index 3f4ed8837d989af14c3b495e3fc7c60207f3d4ff..863cb66448eb794a04a40bc39124890326fd7f85 100644
|
| --- a/content/renderer/gpu/compositor_output_surface.h
|
| +++ b/content/renderer/gpu/compositor_output_surface.h
|
| @@ -13,6 +13,10 @@
|
| #include "base/time.h"
|
| #include "third_party/WebKit/Source/Platform/chromium/public/WebCompositorOutputSurface.h"
|
|
|
| +namespace WebKit {
|
| + struct WebCompositorFrameAck;
|
| +}
|
| +
|
| namespace base {
|
| class TaskRunner;
|
| }
|
| @@ -48,6 +52,8 @@ class CompositorOutputSurface
|
| void OnMessageReceived(const IPC::Message& message);
|
| void OnUpdateVSyncParameters(
|
| base::TimeTicks timebase, base::TimeDelta interval);
|
| + void OnSwapCompositorFrameACK(const WebKit::WebCompositorFrameAck& ack);
|
| + bool Send(IPC::Message* message);
|
|
|
| scoped_refptr<IPC::ForwardingMessageFilter> output_surface_filter_;
|
| WebKit::WebCompositorOutputSurfaceClient* client_;
|
| @@ -57,4 +63,3 @@ class CompositorOutputSurface
|
| };
|
|
|
| #endif // CONTENT_RENDERER_GPU_COMPOSITOR_OUTPUT_SURFACE_H_
|
| -
|
|
|