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

Unified Diff: content/browser/renderer_host/render_widget_host_view_android.cc

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_view_android.cc
diff --git a/content/browser/renderer_host/render_widget_host_view_android.cc b/content/browser/renderer_host/render_widget_host_view_android.cc
index b0968062b537cce780faf9f2eadadb23d4023736..c0ecf9036a1012fb51d7185abebdddb917b40365 100644
--- a/content/browser/renderer_host/render_widget_host_view_android.cc
+++ b/content/browser/renderer_host/render_widget_host_view_android.cc
@@ -1883,7 +1883,7 @@ void RenderWidgetHostViewAndroid::OnVSync(base::TimeTicks frame_time,
if (outstanding_vsync_requests_ & FLUSH_INPUT) {
outstanding_vsync_requests_ &= ~FLUSH_INPUT;
- host_->FlushInput();
+ host_->FlushInput(frame_time);
}
if (outstanding_vsync_requests_ & BEGIN_FRAME ||

Powered by Google App Engine
This is Rietveld 408576698