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 #ifndef UI_EVENTS_BLINK_INPUT_HANDLER_PROXY_H_ | 5 #ifndef UI_EVENTS_BLINK_INPUT_HANDLER_PROXY_H_ |
6 #define UI_EVENTS_BLINK_INPUT_HANDLER_PROXY_H_ | 6 #define UI_EVENTS_BLINK_INPUT_HANDLER_PROXY_H_ |
7 | 7 |
8 #include <memory> | 8 #include <memory> |
9 | 9 |
10 #include "base/containers/hash_tables.h" | 10 #include "base/containers/hash_tables.h" |
11 #include "base/macros.h" | 11 #include "base/macros.h" |
12 #include "cc/input/input_handler.h" | 12 #include "cc/input/input_handler.h" |
13 #include "third_party/WebKit/public/platform/WebGestureCurve.h" | 13 #include "third_party/WebKit/public/platform/WebGestureCurve.h" |
14 #include "third_party/WebKit/public/platform/WebGestureCurveTarget.h" | 14 #include "third_party/WebKit/public/platform/WebGestureCurveTarget.h" |
15 #include "third_party/WebKit/public/platform/WebGestureEvent.h" | 15 #include "third_party/WebKit/public/platform/WebGestureEvent.h" |
16 #include "third_party/WebKit/public/platform/WebInputEvent.h" | 16 #include "third_party/WebKit/public/platform/WebInputEvent.h" |
17 #include "third_party/WebKit/public/web/WebActiveWheelFlingParameters.h" | 17 #include "third_party/WebKit/public/web/WebActiveWheelFlingParameters.h" |
18 #include "ui/events/blink/blink_features.h" | 18 #include "ui/events/blink/blink_features.h" |
19 #include "ui/events/blink/input_scroll_elasticity_controller.h" | 19 #include "ui/events/blink/input_scroll_elasticity_controller.h" |
20 #include "ui/events/blink/scoped_web_input_event.h" | 20 #include "ui/events/blink/scoped_web_input_event.h" |
21 #include "ui/events/blink/synchronous_input_handler_proxy.h" | 21 #include "ui/events/blink/synchronous_input_handler_proxy.h" |
22 | 22 |
23 namespace base { | 23 namespace base { |
24 class TickClock; | 24 class TickClock; |
25 } | 25 } |
26 | 26 |
| 27 namespace blink { |
| 28 class WebMouseWheelEvent; |
| 29 } |
| 30 |
27 namespace ui { | 31 namespace ui { |
28 | 32 |
29 namespace test { | 33 namespace test { |
30 class InputHandlerProxyTest; | 34 class InputHandlerProxyTest; |
31 class InputHandlerProxyEventQueueTest; | 35 class InputHandlerProxyEventQueueTest; |
32 } | 36 } |
33 | 37 |
34 class CompositorThreadEventQueue; | 38 class CompositorThreadEventQueue; |
35 class EventWithCallback; | 39 class EventWithCallback; |
36 class InputHandlerProxyClient; | 40 class InputHandlerProxyClient; |
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
249 bool has_ongoing_compositor_scroll_pinch_; | 253 bool has_ongoing_compositor_scroll_pinch_; |
250 | 254 |
251 std::unique_ptr<base::TickClock> tick_clock_; | 255 std::unique_ptr<base::TickClock> tick_clock_; |
252 | 256 |
253 DISALLOW_COPY_AND_ASSIGN(InputHandlerProxy); | 257 DISALLOW_COPY_AND_ASSIGN(InputHandlerProxy); |
254 }; | 258 }; |
255 | 259 |
256 } // namespace ui | 260 } // namespace ui |
257 | 261 |
258 #endif // UI_EVENTS_BLINK_INPUT_HANDLER_PROXY_H_ | 262 #endif // UI_EVENTS_BLINK_INPUT_HANDLER_PROXY_H_ |
OLD | NEW |