Index: webkit/compositor_bindings/web_to_ccinput_handler_adapter.cc |
diff --git a/webkit/compositor_bindings/web_to_ccinput_handler_adapter.cc b/webkit/compositor_bindings/web_to_ccinput_handler_adapter.cc |
index 9d68cf34da075354d70fd649c3751d5ae7b1bee0..e74e1b8287e2063b15e096923e08bb5200e9fb30 100644 |
--- a/webkit/compositor_bindings/web_to_ccinput_handler_adapter.cc |
+++ b/webkit/compositor_bindings/web_to_ccinput_handler_adapter.cc |
@@ -47,9 +47,9 @@ public: |
return static_cast<WebInputHandlerClient::ScrollStatus>(m_client->scrollBegin(point, static_cast<cc::InputHandlerClient::ScrollInputType>(type))); |
} |
- virtual void scrollBy(WebPoint point, WebSize offset) OVERRIDE |
+ virtual bool scrollBy(WebPoint point, WebSize offset) OVERRIDE |
{ |
- m_client->scrollBy(point, offset); |
+ return m_client->scrollBy(point, offset); |
} |
virtual void scrollEnd() OVERRIDE |