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

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: fix clang Created 8 years, 2 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 3529de68e65298e5d04bc1d1d769111898b6421d..126414db9bc5b0db5937e909780cebff25910f31 100644
--- a/content/browser/renderer_host/render_widget_host_impl.h
+++ b/content/browser/renderer_host/render_widget_host_impl.h
@@ -35,6 +35,11 @@ namespace base {
class TimeTicks;
}
+namespace cc {
+struct CompositorFrame;
+struct CompositorFrameAck;
+}
+
namespace ui {
class KeyEvent;
class Range;
@@ -406,6 +411,8 @@ class CONTENT_EXPORT RenderWidgetHostImpl : virtual public RenderWidgetHost,
int gpu_host_id);
#endif
+ void SwapCompositorFrameAck(const cc::CompositorFrameAck& ack);
+
// Signals that the compositing surface was updated, e.g. after a lost context
// event.
void CompositingSurfaceUpdated();
@@ -568,6 +575,7 @@ class CONTENT_EXPORT RenderWidgetHostImpl : virtual public RenderWidgetHost,
bool last_unlocked_by_target,
bool privileged);
void OnMsgUnlockMouse();
+ void OnMsgSwapCompositorFrame(const cc::CompositorFrame& frame);
#if defined(OS_POSIX) || defined(USE_AURA)
void OnMsgGetWindowRect(gfx::NativeViewId window_id, gfx::Rect* results);
« no previous file with comments | « content/browser/renderer_host/render_process_host_impl.cc ('k') | content/browser/renderer_host/render_widget_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698