Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(115)

Side by Side Diff: content/renderer/input/main_thread_event_queue.h

Issue 2273703002: Force events to be non blocking if main thread is unresponsive. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix build. Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 bool IsRafAlignedInputDisabled(); 145 bool IsRafAlignedInputDisabled();
146 bool IsRafAlignedEvent(const std::unique_ptr<EventWithDispatchType>& event); 146 bool IsRafAlignedEvent(const std::unique_ptr<EventWithDispatchType>& event);
147 147
148 friend class MainThreadEventQueueTest; 148 friend class MainThreadEventQueueTest;
149 int routing_id_; 149 int routing_id_;
150 MainThreadEventQueueClient* client_; 150 MainThreadEventQueueClient* client_;
151 std::unique_ptr<EventWithDispatchType> in_flight_event_; 151 std::unique_ptr<EventWithDispatchType> in_flight_event_;
152 bool is_flinging_; 152 bool is_flinging_;
153 bool last_touch_start_forced_nonblocking_due_to_fling_; 153 bool last_touch_start_forced_nonblocking_due_to_fling_;
154 bool enable_fling_passive_listener_flag_; 154 bool enable_fling_passive_listener_flag_;
155 bool enable_non_blocking_due_to_main_thread_responsiveness_flag_;
155 bool handle_raf_aligned_touch_input_; 156 bool handle_raf_aligned_touch_input_;
156 bool handle_raf_aligned_mouse_input_; 157 bool handle_raf_aligned_mouse_input_;
157 158
158 // Contains data to be shared between main thread and compositor thread. 159 // Contains data to be shared between main thread and compositor thread.
159 struct SharedState { 160 struct SharedState {
160 SharedState(); 161 SharedState();
161 ~SharedState(); 162 ~SharedState();
162 163
163 WebInputEventQueue<EventWithDispatchType> events_; 164 WebInputEventQueue<EventWithDispatchType> events_;
164 bool sent_main_frame_request_; 165 bool sent_main_frame_request_;
165 }; 166 };
166 167
167 // Lock used to serialize |shared_state_|. 168 // Lock used to serialize |shared_state_|.
168 base::Lock shared_state_lock_; 169 base::Lock shared_state_lock_;
169 SharedState shared_state_; 170 SharedState shared_state_;
170 171
171 scoped_refptr<base::SingleThreadTaskRunner> main_task_runner_; 172 scoped_refptr<base::SingleThreadTaskRunner> main_task_runner_;
172 blink::scheduler::RendererScheduler* renderer_scheduler_; 173 blink::scheduler::RendererScheduler* renderer_scheduler_;
173 174
174 DISALLOW_COPY_AND_ASSIGN(MainThreadEventQueue); 175 DISALLOW_COPY_AND_ASSIGN(MainThreadEventQueue);
175 }; 176 };
176 177
177 } // namespace content 178 } // namespace content
178 179
179 #endif // CONTENT_RENDERER_INPUT_MAIN_THREAD_EVENT_QUEUE_H_ 180 #endif // CONTENT_RENDERER_INPUT_MAIN_THREAD_EVENT_QUEUE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698