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

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

Issue 2740833005: [cc] Pass on BeginFrameAcks from CompositorEBFS through RWHVAura, DFH. (Closed)
Patch Set: address security comments Created 3 years, 9 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 e98b0e4f091f44e1eba32d212cd4abb8cecdf3e9..48583124b13203b18dae02c3406d6234112b8815 100644
--- a/content/browser/renderer_host/render_widget_host_impl.h
+++ b/content/browser/renderer_host/render_widget_host_impl.h
@@ -60,6 +60,10 @@ class WebMouseEvent;
struct WebCompositionUnderline;
}
+namespace cc {
+struct BeginFrameAck;
+} // namespace cc
+
#if defined(OS_MACOSX)
namespace device {
class PowerSaveBlocker;
@@ -617,6 +621,7 @@ class CONTENT_EXPORT RenderWidgetHostImpl : public RenderWidgetHost,
void OnSetTooltipText(const base::string16& tooltip_text,
blink::WebTextDirection text_direction_hint);
bool OnSwapCompositorFrame(const IPC::Message& message);
+ void OnBeginFrameDidNotSwap(const cc::BeginFrameAck& ack);
void OnUpdateRect(const ViewHostMsg_UpdateRect_Params& params);
void OnQueueSyntheticGesture(const SyntheticGesturePacket& gesture_packet);
void OnSetCursor(const WebCursor& cursor);

Powered by Google App Engine
This is Rietveld 408576698