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

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

Issue 1923973002: Add UMA metric for tracking listeners for blocking touch while fling is happening (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Change comments in histogram Created 4 years, 7 months 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 "content/common/content_export.h" 9 #include "content/common/content_export.h"
10 #include "content/common/input/event_with_latency_info.h" 10 #include "content/common/input/event_with_latency_info.h"
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 // a non-blocking event to be queued to the main thread. 99 // a non-blocking event to be queued to the main thread.
100 bool HandleEvent(const blink::WebInputEvent* event, 100 bool HandleEvent(const blink::WebInputEvent* event,
101 const ui::LatencyInfo& latency, 101 const ui::LatencyInfo& latency,
102 InputEventDispatchType dispatch_type, 102 InputEventDispatchType dispatch_type,
103 InputEventAckState ack_result); 103 InputEventAckState ack_result);
104 104
105 // Call once the main thread has handled an outstanding |type| event 105 // Call once the main thread has handled an outstanding |type| event
106 // in flight. 106 // in flight.
107 void EventHandled(blink::WebInputEvent::Type type); 107 void EventHandled(blink::WebInputEvent::Type type);
108 108
109 void set_is_flinging(bool is_flinging) { is_flinging_ = is_flinging; }
110
109 private: 111 private:
110 friend class MainThreadEventQueueTest; 112 friend class MainThreadEventQueueTest;
111 int routing_id_; 113 int routing_id_;
112 MainThreadEventQueueClient* client_; 114 MainThreadEventQueueClient* client_;
113 WebInputEventQueue<PendingMouseWheelEvent> wheel_events_; 115 WebInputEventQueue<PendingMouseWheelEvent> wheel_events_;
114 WebInputEventQueue<PendingTouchEvent> touch_events_; 116 WebInputEventQueue<PendingTouchEvent> touch_events_;
117 bool is_flinging_;
115 118
116 DISALLOW_COPY_AND_ASSIGN(MainThreadEventQueue); 119 DISALLOW_COPY_AND_ASSIGN(MainThreadEventQueue);
117 }; 120 };
118 121
119 } // namespace content 122 } // namespace content
120 123
121 #endif // CONTENT_RENDERER_INPUT_MAIN_THREAD_EVENT_QUEUE_H_ 124 #endif // CONTENT_RENDERER_INPUT_MAIN_THREAD_EVENT_QUEUE_H_
OLDNEW
« no previous file with comments | « content/renderer/input/input_handler_wrapper.cc ('k') | content/renderer/input/main_thread_event_queue.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698