| 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 f65ff8a658475c458af3987c91a4d5ef37034b17..c8b35c1641db0a02b1a64e08a36cbdc466887f03 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 bool scrollByIfPossible(WebPoint point, WebSize offset) OVERRIDE
|
| + virtual bool scrollByIfPossible(int64 inputNumber, WebPoint point, WebSize offset) OVERRIDE
|
| {
|
| - return m_client->scrollBy(point, offset);
|
| + return m_client->scrollBy(inputNumber, point, offset);
|
| }
|
|
|
| virtual void scrollEnd() OVERRIDE
|
|
|