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

Unified Diff: content/renderer/input/input_handler_proxy_unittest.cc

Issue 713413002: Hook ScrollElasticityController to InputHandlerProxy (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add missed files Created 6 years, 1 month 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/renderer/input/input_handler_proxy_unittest.cc
diff --git a/content/renderer/input/input_handler_proxy_unittest.cc b/content/renderer/input/input_handler_proxy_unittest.cc
index 4de546901aa13db2dc99e4e882fa622825456c36..a5e1f9495b1a2d3199dd96eabd0fc46f143915cd 100644
--- a/content/renderer/input/input_handler_proxy_unittest.cc
+++ b/content/renderer/input/input_handler_proxy_unittest.cc
@@ -104,6 +104,11 @@ class MockInputHandler : public cc::InputHandler {
return scoped_ptr<cc::SwapPromiseMonitor>();
}
+ virtual cc::ScrollElasticityControllerClient*
+ GetScrollElasticityControllerClient() {
jdduke (slow) 2014/11/12 02:32:24 Would it be crazy to mock this and add a brief smo
ccameron 2014/11/12 08:15:29 This definitely needs to be done, but I want to cl
+ return NULL;
+ }
+
virtual void BindToClient(cc::InputHandlerClient* client) override {}
virtual void MouseMoveAt(const gfx::Point& mouse_position) override {}

Powered by Google App Engine
This is Rietveld 408576698