| 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..d92537da887a1a8a14aece1bbd90e341c43e2765 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 IsRafAlignedInputDisabled();
|
| + bool IsRafAlignedEvent(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 {
|
|
|