Chromium Code Reviews| Index: content/renderer/input/main_thread_event_queue.h |
| diff --git a/content/renderer/input/main_thread_event_queue.h b/content/renderer/input/main_thread_event_queue.h |
| index e5e5fc5016f43156654418a9a7710f0529de6c02..abee01ed8dc3038013d07fee7092e00f3ca978c6 100644 |
| --- a/content/renderer/input/main_thread_event_queue.h |
| +++ b/content/renderer/input/main_thread_event_queue.h |
| @@ -142,6 +142,9 @@ class CONTENT_EXPORT MainThreadEventQueue |
| const ui::LatencyInfo& latency, |
| InputEventDispatchType original_dispatch_type); |
| + bool RafAlignedInputDisabled(); |
|
Charlie Reis
2016/10/25 16:58:46
nit: IsRafAlignedInputDisabled?
dtapuska
2016/10/26 02:34:52
Done.
|
| + bool IsContinuousEvent(const std::unique_ptr<EventWithDispatchType>& event); |
| + |
| friend class MainThreadEventQueueTest; |
| int routing_id_; |
| MainThreadEventQueueClient* client_; |
| @@ -149,7 +152,8 @@ class CONTENT_EXPORT MainThreadEventQueue |
| bool is_flinging_; |
| bool last_touch_start_forced_nonblocking_due_to_fling_; |
| bool enable_fling_passive_listener_flag_; |
| - bool handle_raf_aligned_input_; |
| + bool handle_raf_aligned_touch_input_; |
| + bool handle_raf_aligned_mouse_input_; |
| // Contains data to be shared between main thread and compositor thread. |
| struct SharedState { |