Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1640)

Unified Diff: content/browser/renderer_host/render_widget_host_impl.h

Issue 10915298: Add CCDelegatingRenderer, and corresponding IPCs (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: correct base Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);

Powered by Google App Engine
This is Rietveld 408576698