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

Unified Diff: content/browser/renderer_host/input/mock_input_router_client.h

Issue 1003023002: Signal input flush when all flings have terminated (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix test compile Created 5 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/input/mock_input_router_client.h
diff --git a/content/browser/renderer_host/input/mock_input_router_client.h b/content/browser/renderer_host/input/mock_input_router_client.h
index dd0ef9d0747563094fff54bd2a2e32a00148e7e7..c4938a4a4e2e3bcef909c1463de2abec1f47994b 100644
--- a/content/browser/renderer_host/input/mock_input_router_client.h
+++ b/content/browser/renderer_host/input/mock_input_router_client.h
@@ -26,9 +26,9 @@ class MockInputRouterClient : public InputRouterClient {
void IncrementInFlightEventCount() override;
void DecrementInFlightEventCount() override;
void OnHasTouchEventHandlers(bool has_handlers) override;
- void SetNeedsFlush() override;
void DidFlush() override;
void DidOverscroll(const DidOverscrollParams& params) override;
+ void DidStopFlinging() override;
bool GetAndResetFilterEventCalled();
size_t GetAndResetDidFlushCount();
@@ -60,7 +60,6 @@ class MockInputRouterClient : public InputRouterClient {
scoped_ptr<InputEvent> last_filter_event_;
size_t did_flush_called_count_;
- bool set_needs_flush_called_;
DidOverscrollParams overscroll_;
};

Powered by Google App Engine
This is Rietveld 408576698