| Index: content/renderer/input/input_handler_proxy.h
|
| diff --git a/content/renderer/input/input_handler_proxy.h b/content/renderer/input/input_handler_proxy.h
|
| index b480d45e8fb3b443f93718b7525ba1b88654293d..0a0b2466bcacb049afb58039752dd40cacafd238 100644
|
| --- a/content/renderer/input/input_handler_proxy.h
|
| +++ b/content/renderer/input/input_handler_proxy.h
|
| @@ -46,13 +46,11 @@
|
| virtual void WillShutdown() OVERRIDE;
|
| virtual void Animate(base::TimeTicks time) OVERRIDE;
|
| virtual void MainThreadHasStoppedFlinging() OVERRIDE;
|
| - virtual void DidOverscroll(const gfx::Vector2dF& accumulated_overscroll,
|
| - const gfx::Vector2dF& latest_overscroll_delta)
|
| - OVERRIDE;
|
| + virtual void DidOverscroll(const cc::DidOverscrollParams& params) OVERRIDE;
|
|
|
| // blink::WebGestureCurveTarget implementation.
|
| - virtual bool scrollBy(const blink::WebFloatSize& offset,
|
| - const blink::WebFloatSize& velocity);
|
| + virtual void scrollBy(const blink::WebFloatSize& offset);
|
| + virtual void notifyCurrentFlingVelocity(const blink::WebFloatSize& velocity);
|
|
|
| bool gesture_scroll_on_impl_thread_for_testing() const {
|
| return gesture_scroll_on_impl_thread_;
|
| @@ -90,9 +88,6 @@
|
| bool disallow_horizontal_fling_scroll_;
|
| bool disallow_vertical_fling_scroll_;
|
|
|
| - // Non-zero only within the scope of |scrollBy|.
|
| - gfx::Vector2dF current_fling_velocity_;
|
| -
|
| DISALLOW_COPY_AND_ASSIGN(InputHandlerProxy);
|
| };
|
|
|
|
|