| 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 <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| (...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 255 bool touch_scroll_started_sent_; | 255 bool touch_scroll_started_sent_; |
| 256 | 256 |
| 257 MouseWheelEventQueue wheel_event_queue_; | 257 MouseWheelEventQueue wheel_event_queue_; |
| 258 std::unique_ptr<TouchEventQueue> touch_event_queue_; | 258 std::unique_ptr<TouchEventQueue> touch_event_queue_; |
| 259 GestureEventQueue gesture_event_queue_; | 259 GestureEventQueue gesture_event_queue_; |
| 260 TouchActionFilter touch_action_filter_; | 260 TouchActionFilter touch_action_filter_; |
| 261 InputEventStreamValidator input_stream_validator_; | 261 InputEventStreamValidator input_stream_validator_; |
| 262 InputEventStreamValidator output_stream_validator_; | 262 InputEventStreamValidator output_stream_validator_; |
| 263 | 263 |
| 264 float device_scale_factor_; | 264 float device_scale_factor_; |
| 265 bool raf_aligned_touch_enabled_; |
| 265 | 266 |
| 266 // Last touch position relative to screen. Used to compute movementX/Y. | 267 // Last touch position relative to screen. Used to compute movementX/Y. |
| 267 std::map<int, gfx::Point> global_touch_position_; | 268 std::map<int, gfx::Point> global_touch_position_; |
| 268 | 269 |
| 269 DISALLOW_COPY_AND_ASSIGN(InputRouterImpl); | 270 DISALLOW_COPY_AND_ASSIGN(InputRouterImpl); |
| 270 }; | 271 }; |
| 271 | 272 |
| 272 } // namespace content | 273 } // namespace content |
| 273 | 274 |
| 274 #endif // CONTENT_BROWSER_RENDERER_HOST_INPUT_INPUT_ROUTER_IMPL_H_ | 275 #endif // CONTENT_BROWSER_RENDERER_HOST_INPUT_INPUT_ROUTER_IMPL_H_ |
| OLD | NEW |