| 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 3529de68e65298e5d04bc1d1d769111898b6421d..9e0157374dd5b820d51a40fedcea716b4733134b 100644
|
| --- a/content/browser/renderer_host/render_widget_host_impl.h
|
| +++ b/content/browser/renderer_host/render_widget_host_impl.h
|
| @@ -44,6 +44,8 @@ namespace WebKit {
|
| class WebInputEvent;
|
| class WebMouseEvent;
|
| struct WebCompositionUnderline;
|
| +struct WebCompositorFrame;
|
| +struct WebCompositorFrameAck;
|
| struct WebScreenInfo;
|
| }
|
|
|
| @@ -406,6 +408,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();
|
| @@ -568,6 +572,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);
|
|
|