| Index: content/renderer/gpu/input_handler_wrapper.cc
|
| diff --git a/content/renderer/gpu/input_handler_wrapper.cc b/content/renderer/gpu/input_handler_wrapper.cc
|
| index 348ff6dc5864b1d29b46ae42ded42f2eaa6d2bfe..238d5623f32a1a6245fd40f92f19e5b6e40b7160 100644
|
| --- a/content/renderer/gpu/input_handler_wrapper.cc
|
| +++ b/content/renderer/gpu/input_handler_wrapper.cc
|
| @@ -7,7 +7,6 @@
|
| #include "base/message_loop/message_loop_proxy.h"
|
| #include "content/renderer/gpu/input_event_filter.h"
|
| #include "content/renderer/gpu/input_handler_manager.h"
|
| -#include "third_party/WebKit/public/platform/Platform.h"
|
|
|
| namespace content {
|
|
|
| @@ -29,27 +28,10 @@ InputHandlerWrapper::~InputHandlerWrapper() {
|
| input_handler_proxy_.SetClient(NULL);
|
| }
|
|
|
| -void InputHandlerWrapper::TransferActiveWheelFlingAnimation(
|
| - const WebKit::WebActiveWheelFlingParameters& params) {
|
| - main_loop_->PostTask(
|
| - FROM_HERE,
|
| - base::Bind(&RenderViewImpl::TransferActiveWheelFlingAnimation,
|
| - render_view_impl_,
|
| - params));
|
| -}
|
| -
|
| void InputHandlerWrapper::WillShutdown() {
|
| input_handler_manager_->RemoveInputHandler(routing_id_);
|
| }
|
|
|
| -WebKit::WebGestureCurve* InputHandlerWrapper::CreateFlingAnimationCurve(
|
| - int deviceSource,
|
| - const WebKit::WebFloatPoint& velocity,
|
| - const WebKit::WebSize& cumulative_scroll) {
|
| - return WebKit::Platform::current()->createFlingAnimationCurve(
|
| - deviceSource, velocity, cumulative_scroll);
|
| -}
|
| -
|
| void InputHandlerWrapper::DidOverscroll(const cc::DidOverscrollParams& params) {
|
| input_handler_manager_->DidOverscroll(routing_id_, params);
|
| }
|
|
|