| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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_RENDERER_INPUT_MAIN_THREAD_EVENT_QUEUE_H_ | 5 #ifndef CONTENT_RENDERER_INPUT_MAIN_THREAD_EVENT_QUEUE_H_ |
| 6 #define CONTENT_RENDERER_INPUT_MAIN_THREAD_EVENT_QUEUE_H_ | 6 #define CONTENT_RENDERER_INPUT_MAIN_THREAD_EVENT_QUEUE_H_ |
| 7 | 7 |
| 8 #include <deque> | 8 #include <deque> |
| 9 #include "base/feature_list.h" | 9 #include "base/feature_list.h" |
| 10 #include "content/common/content_export.h" | 10 #include "content/common/content_export.h" |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 146 | 146 |
| 147 bool IsRafAlignedInputDisabled(); | 147 bool IsRafAlignedInputDisabled(); |
| 148 bool IsRafAlignedEvent(const blink::WebInputEvent& event); | 148 bool IsRafAlignedEvent(const blink::WebInputEvent& event); |
| 149 | 149 |
| 150 friend class MainThreadEventQueueTest; | 150 friend class MainThreadEventQueueTest; |
| 151 int routing_id_; | 151 int routing_id_; |
| 152 MainThreadEventQueueClient* client_; | 152 MainThreadEventQueueClient* client_; |
| 153 std::unique_ptr<EventWithDispatchType> in_flight_event_; | 153 std::unique_ptr<EventWithDispatchType> in_flight_event_; |
| 154 bool last_touch_start_forced_nonblocking_due_to_fling_; | 154 bool last_touch_start_forced_nonblocking_due_to_fling_; |
| 155 bool enable_fling_passive_listener_flag_; | 155 bool enable_fling_passive_listener_flag_; |
| 156 bool enable_non_blocking_due_to_main_thread_responsiveness_flag_; |
| 156 bool handle_raf_aligned_touch_input_; | 157 bool handle_raf_aligned_touch_input_; |
| 157 bool handle_raf_aligned_mouse_input_; | 158 bool handle_raf_aligned_mouse_input_; |
| 158 | 159 |
| 159 // Contains data to be shared between main thread and compositor thread. | 160 // Contains data to be shared between main thread and compositor thread. |
| 160 struct SharedState { | 161 struct SharedState { |
| 161 SharedState(); | 162 SharedState(); |
| 162 ~SharedState(); | 163 ~SharedState(); |
| 163 | 164 |
| 164 WebInputEventQueue<EventWithDispatchType> events_; | 165 WebInputEventQueue<EventWithDispatchType> events_; |
| 165 bool sent_main_frame_request_; | 166 bool sent_main_frame_request_; |
| 166 }; | 167 }; |
| 167 | 168 |
| 168 // Lock used to serialize |shared_state_|. | 169 // Lock used to serialize |shared_state_|. |
| 169 base::Lock shared_state_lock_; | 170 base::Lock shared_state_lock_; |
| 170 SharedState shared_state_; | 171 SharedState shared_state_; |
| 171 | 172 |
| 172 scoped_refptr<base::SingleThreadTaskRunner> main_task_runner_; | 173 scoped_refptr<base::SingleThreadTaskRunner> main_task_runner_; |
| 173 blink::scheduler::RendererScheduler* renderer_scheduler_; | 174 blink::scheduler::RendererScheduler* renderer_scheduler_; |
| 174 | 175 |
| 175 DISALLOW_COPY_AND_ASSIGN(MainThreadEventQueue); | 176 DISALLOW_COPY_AND_ASSIGN(MainThreadEventQueue); |
| 176 }; | 177 }; |
| 177 | 178 |
| 178 } // namespace content | 179 } // namespace content |
| 179 | 180 |
| 180 #endif // CONTENT_RENDERER_INPUT_MAIN_THREAD_EVENT_QUEUE_H_ | 181 #endif // CONTENT_RENDERER_INPUT_MAIN_THREAD_EVENT_QUEUE_H_ |
| OLD | NEW |