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

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

Issue 1408213002: Add hooks for flushing input from BeginFrame dispatch on Aura (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix build for real Created 5 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 bd6bc767fc252f6b9acf9d617dd9154aa94a1471..4818b8b47f945336bfc717adf777819d0e2c8c92 100644
--- a/content/browser/renderer_host/render_widget_host_impl.h
+++ b/content/browser/renderer_host/render_widget_host_impl.h
@@ -421,10 +421,7 @@ class CONTENT_EXPORT RenderWidgetHostImpl : public RenderWidgetHost,
void SuppressNextCharEvents();
// Called by the view in response to a flush request.
- void FlushInput();
-
- // Request a flush signal from the view.
- void SetNeedsFlush();
+ void FlushInput(base::TimeTicks frame_time);
// Indicates whether the renderer drives the RenderWidgetHosts's size or the
// other way around.
@@ -638,7 +635,8 @@ class CONTENT_EXPORT RenderWidgetHostImpl : public RenderWidgetHost,
void IncrementInFlightEventCount() override;
void DecrementInFlightEventCount() override;
void OnHasTouchEventHandlers(bool has_handlers) override;
- void DidFlush() override;
+ void SetNeedsFlushInput() override;
+ void DidFlushAllInput() override;
void DidOverscroll(const DidOverscrollParams& params) override;
void DidStopFlinging() override;

Powered by Google App Engine
This is Rietveld 408576698