| Index: cc/trees/layer_tree_host_impl.h
|
| diff --git a/cc/trees/layer_tree_host_impl.h b/cc/trees/layer_tree_host_impl.h
|
| index 2d64a3b8b5c61dc33890e7649eb6688a83b203f5..09b468dfb3796818f95d388563de0072354e7b37 100644
|
| --- a/cc/trees/layer_tree_host_impl.h
|
| +++ b/cc/trees/layer_tree_host_impl.h
|
| @@ -123,8 +123,6 @@ class CC_EXPORT LayerTreeHostImpl
|
| virtual void OnRootLayerDelegatedScrollOffsetChanged() OVERRIDE;
|
| virtual void ScrollEnd() OVERRIDE;
|
| virtual InputHandler::ScrollStatus FlingScrollBegin() OVERRIDE;
|
| - virtual void NotifyCurrentFlingVelocity(
|
| - const gfx::Vector2dF& velocity) OVERRIDE;
|
| virtual void MouseMoveAt(const gfx::Point& viewport_point) OVERRIDE;
|
| virtual void PinchGestureBegin() OVERRIDE;
|
| virtual void PinchGestureUpdate(float magnify_delta,
|
| @@ -383,9 +381,6 @@ class CC_EXPORT LayerTreeHostImpl
|
| gfx::Vector2dF accumulated_root_overscroll() const {
|
| return accumulated_root_overscroll_;
|
| }
|
| - gfx::Vector2dF current_fling_velocity() const {
|
| - return current_fling_velocity_;
|
| - }
|
|
|
| bool pinch_gesture_active() const { return pinch_gesture_active_; }
|
|
|
| @@ -574,7 +569,6 @@ class CC_EXPORT LayerTreeHostImpl
|
| ManagedMemoryPolicy cached_managed_memory_policy_;
|
|
|
| gfx::Vector2dF accumulated_root_overscroll_;
|
| - gfx::Vector2dF current_fling_velocity_;
|
|
|
| bool pinch_gesture_active_;
|
| bool pinch_gesture_end_should_clear_scrolling_layer_;
|
|
|