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

Unified Diff: content/browser/renderer_host/render_widget_host_unittest.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_unittest.cc
diff --git a/content/browser/renderer_host/render_widget_host_unittest.cc b/content/browser/renderer_host/render_widget_host_unittest.cc
index 9d95b9ae321db9c25ecf6a1a8594e79a66cd6f47..65fc05c555ac623e759a7b7884e8da1634717878 100644
--- a/content/browser/renderer_host/render_widget_host_unittest.cc
+++ b/content/browser/renderer_host/render_widget_host_unittest.cc
@@ -92,6 +92,7 @@ class MockInputRouter : public InputRouter {
send_event_called_ = true;
return true;
}
+ void FlushInput(base::TimeTicks flush_time) override {}
void SendMouseEvent(const MouseEventWithLatencyInfo& mouse_event) override {
sent_mouse_event_ = true;
}
@@ -117,7 +118,6 @@ class MockInputRouter : public InputRouter {
return NULL;
}
void NotifySiteIsMobileOptimized(bool is_mobile_optimized) override {}
- void RequestNotificationWhenFlushed() override {}
bool HasPendingEvents() const override { return false; }
// IPC::Listener

Powered by Google App Engine
This is Rietveld 408576698