OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "content/renderer/input/input_handler_wrapper.h" | 5 #include "content/renderer/input/input_handler_wrapper.h" |
6 | 6 |
7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
8 #include "base/location.h" | 8 #include "base/location.h" |
9 #include "content/common/input/did_overscroll_params.h" | 9 #include "content/common/input/did_overscroll_params.h" |
10 #include "content/public/common/content_switches.h" | 10 #include "content/public/common/content_switches.h" |
11 #include "content/renderer/input/input_event_filter.h" | 11 #include "content/renderer/input/input_event_filter.h" |
12 #include "content/renderer/input/input_handler_manager.h" | 12 #include "content/renderer/input/input_handler_manager.h" |
13 #include "third_party/WebKit/public/platform/Platform.h" | 13 #include "third_party/WebKit/public/platform/Platform.h" |
14 | 14 |
15 namespace content { | 15 namespace content { |
16 | 16 |
17 InputHandlerWrapper::InputHandlerWrapper( | 17 InputHandlerWrapper::InputHandlerWrapper( |
18 InputHandlerManager* input_handler_manager, | 18 InputHandlerManager* input_handler_manager, |
19 int routing_id, | 19 int routing_id, |
20 const scoped_refptr<base::SingleThreadTaskRunner>& main_task_runner, | 20 const scoped_refptr<base::SingleThreadTaskRunner>& main_task_runner, |
21 const base::WeakPtr<cc::InputHandler>& input_handler, | 21 const base::WeakPtr<cc::InputHandler>& input_handler, |
22 const base::WeakPtr<RenderViewImpl>& render_view_impl, | 22 const base::WeakPtr<RenderViewImpl>& render_view_impl, |
23 bool enable_smooth_scrolling, | 23 bool enable_smooth_scrolling) |
24 bool enable_wheel_gestures) | |
25 : input_handler_manager_(input_handler_manager), | 24 : input_handler_manager_(input_handler_manager), |
26 routing_id_(routing_id), | 25 routing_id_(routing_id), |
27 input_handler_proxy_(input_handler.get(), this), | 26 input_handler_proxy_(input_handler.get(), this), |
28 main_task_runner_(main_task_runner), | 27 main_task_runner_(main_task_runner), |
29 render_view_impl_(render_view_impl) { | 28 render_view_impl_(render_view_impl) { |
30 DCHECK(input_handler); | 29 DCHECK(input_handler); |
31 input_handler_proxy_.set_smooth_scroll_enabled(enable_smooth_scrolling); | 30 input_handler_proxy_.set_smooth_scroll_enabled(enable_smooth_scrolling); |
32 input_handler_proxy_.set_use_gesture_events_for_mouse_wheel( | |
33 enable_wheel_gestures); | |
34 } | 31 } |
35 | 32 |
36 InputHandlerWrapper::~InputHandlerWrapper() { | 33 InputHandlerWrapper::~InputHandlerWrapper() { |
37 } | 34 } |
38 | 35 |
39 void InputHandlerWrapper::TransferActiveWheelFlingAnimation( | 36 void InputHandlerWrapper::TransferActiveWheelFlingAnimation( |
40 const blink::WebActiveWheelFlingParameters& params) { | 37 const blink::WebActiveWheelFlingParameters& params) { |
41 main_task_runner_->PostTask( | 38 main_task_runner_->PostTask( |
42 FROM_HERE, base::Bind(&RenderViewImpl::TransferActiveWheelFlingAnimation, | 39 FROM_HERE, base::Bind(&RenderViewImpl::TransferActiveWheelFlingAnimation, |
43 render_view_impl_, params)); | 40 render_view_impl_, params)); |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
75 | 72 |
76 void InputHandlerWrapper::DidStopFlinging() { | 73 void InputHandlerWrapper::DidStopFlinging() { |
77 input_handler_manager_->DidStopFlinging(routing_id_); | 74 input_handler_manager_->DidStopFlinging(routing_id_); |
78 } | 75 } |
79 | 76 |
80 void InputHandlerWrapper::DidAnimateForInput() { | 77 void InputHandlerWrapper::DidAnimateForInput() { |
81 input_handler_manager_->DidAnimateForInput(); | 78 input_handler_manager_->DidAnimateForInput(); |
82 } | 79 } |
83 | 80 |
84 } // namespace content | 81 } // namespace content |
OLD | NEW |