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 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
268 // Defaults to ACK_SOURCE_NONE. | 268 // Defaults to ACK_SOURCE_NONE. |
269 AckSource current_ack_source_; | 269 AckSource current_ack_source_; |
270 | 270 |
271 // Whether a call to |Flush()| has yet been accompanied by a |DidFlush()| call | 271 // Whether a call to |Flush()| has yet been accompanied by a |DidFlush()| call |
272 // to the client_ after all events have been dispatched/acked. | 272 // to the client_ after all events have been dispatched/acked. |
273 bool flush_requested_; | 273 bool flush_requested_; |
274 | 274 |
275 TouchEventQueue touch_event_queue_; | 275 TouchEventQueue touch_event_queue_; |
276 GestureEventQueue gesture_event_queue_; | 276 GestureEventQueue gesture_event_queue_; |
277 TouchActionFilter touch_action_filter_; | 277 TouchActionFilter touch_action_filter_; |
278 InputEventStreamValidator event_stream_validator_; | 278 InputEventStreamValidator input_stream_validator_; |
| 279 InputEventStreamValidator output_stream_validator_; |
279 | 280 |
280 DISALLOW_COPY_AND_ASSIGN(InputRouterImpl); | 281 DISALLOW_COPY_AND_ASSIGN(InputRouterImpl); |
281 }; | 282 }; |
282 | 283 |
283 } // namespace content | 284 } // namespace content |
284 | 285 |
285 #endif // CONTENT_BROWSER_RENDERER_HOST_INPUT_INPUT_ROUTER_IMPL_H_ | 286 #endif // CONTENT_BROWSER_RENDERER_HOST_INPUT_INPUT_ROUTER_IMPL_H_ |
OLD | NEW |