| Index: content/browser/renderer_host/render_widget_host_impl.h
|
| diff --git a/content/browser/renderer_host/render_widget_host_impl.h b/content/browser/renderer_host/render_widget_host_impl.h
|
| index f4ed16aa32154ed941c1d8b470f27c05a85e2504..696458ae9f17b726c4cfb28604631a4d61f5b4b7 100644
|
| --- a/content/browser/renderer_host/render_widget_host_impl.h
|
| +++ b/content/browser/renderer_host/render_widget_host_impl.h
|
| @@ -43,6 +43,8 @@ namespace WebKit {
|
| class WebInputEvent;
|
| class WebMouseEvent;
|
| struct WebCompositionUnderline;
|
| +struct WebCompositorFrame;
|
| +struct WebCompositorFrameAck;
|
| struct WebScreenInfo;
|
| }
|
|
|
| @@ -395,6 +397,8 @@ class CONTENT_EXPORT RenderWidgetHostImpl : virtual public RenderWidgetHost,
|
| int gpu_host_id);
|
| #endif
|
|
|
| + void SwapCompositorFrameAck(const WebKit::WebCompositorFrameAck& ack);
|
| +
|
| // Signals that the compositing surface was updated, e.g. after a lost context
|
| // event.
|
| void CompositingSurfaceUpdated();
|
| @@ -547,6 +551,7 @@ class CONTENT_EXPORT RenderWidgetHostImpl : virtual public RenderWidgetHost,
|
| bool last_unlocked_by_target,
|
| bool privileged);
|
| void OnMsgUnlockMouse();
|
| + void OnMsgSwapCompositorFrame(const WebKit::WebCompositorFrame& frame);
|
|
|
| #if defined(OS_POSIX) || defined(USE_AURA)
|
| void OnMsgGetWindowRect(gfx::NativeViewId window_id, gfx::Rect* results);
|
|
|