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 CONTENT_BROWSER_RENDERER_HOST_INPUT_INPUT_ROUTER_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_INPUT_INPUT_ROUTER_IMPL_H_ |
6 #define CONTENT_BROWSER_RENDERER_HOST_INPUT_INPUT_ROUTER_IMPL_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_INPUT_INPUT_ROUTER_IMPL_H_ |
7 | 7 |
8 #include <queue> | 8 #include <queue> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
(...skipping 15 matching lines...) Expand all Loading... |
26 | 26 |
27 namespace ui { | 27 namespace ui { |
28 struct LatencyInfo; | 28 struct LatencyInfo; |
29 } | 29 } |
30 | 30 |
31 namespace content { | 31 namespace content { |
32 | 32 |
33 class InputAckHandler; | 33 class InputAckHandler; |
34 class InputRouterClient; | 34 class InputRouterClient; |
35 class OverscrollController; | 35 class OverscrollController; |
36 class RenderWidgetHostImpl; | |
37 struct DidOverscrollParams; | 36 struct DidOverscrollParams; |
38 | 37 |
39 // A default implementation for browser input event routing. | 38 // A default implementation for browser input event routing. |
40 class CONTENT_EXPORT InputRouterImpl | 39 class CONTENT_EXPORT InputRouterImpl |
41 : public NON_EXPORTED_BASE(InputRouter), | 40 : public NON_EXPORTED_BASE(InputRouter), |
42 public NON_EXPORTED_BASE(GestureEventQueueClient), | 41 public NON_EXPORTED_BASE(GestureEventQueueClient), |
43 public NON_EXPORTED_BASE(TouchEventQueueClient), | 42 public NON_EXPORTED_BASE(TouchEventQueueClient), |
44 public NON_EXPORTED_BASE(TouchpadTapSuppressionControllerClient) { | 43 public NON_EXPORTED_BASE(TouchpadTapSuppressionControllerClient) { |
45 public: | 44 public: |
46 struct CONTENT_EXPORT Config { | 45 struct CONTENT_EXPORT Config { |
(...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
276 TouchActionFilter touch_action_filter_; | 275 TouchActionFilter touch_action_filter_; |
277 InputEventStreamValidator input_stream_validator_; | 276 InputEventStreamValidator input_stream_validator_; |
278 InputEventStreamValidator output_stream_validator_; | 277 InputEventStreamValidator output_stream_validator_; |
279 | 278 |
280 DISALLOW_COPY_AND_ASSIGN(InputRouterImpl); | 279 DISALLOW_COPY_AND_ASSIGN(InputRouterImpl); |
281 }; | 280 }; |
282 | 281 |
283 } // namespace content | 282 } // namespace content |
284 | 283 |
285 #endif // CONTENT_BROWSER_RENDERER_HOST_INPUT_INPUT_ROUTER_IMPL_H_ | 284 #endif // CONTENT_BROWSER_RENDERER_HOST_INPUT_INPUT_ROUTER_IMPL_H_ |
OLD | NEW |