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

Side by Side Diff: ui/events/latency_info.h

Issue 2771053003: WIP: Plumbing input event latency reporting through Mus GPU.
Patch Set: Updating dependencies. Created 3 years, 9 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 UI_EVENTS_LATENCY_INFO_H_ 5 #ifndef UI_EVENTS_LATENCY_INFO_H_
6 #define UI_EVENTS_LATENCY_INFO_H_ 6 #define UI_EVENTS_LATENCY_INFO_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <memory> 10 #include <memory>
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 }; 106 };
107 107
108 enum SourceEventType { 108 enum SourceEventType {
109 UNKNOWN, 109 UNKNOWN,
110 WHEEL, 110 WHEEL,
111 TOUCH, 111 TOUCH,
112 OTHER, 112 OTHER,
113 SOURCE_EVENT_TYPE_LAST = OTHER, 113 SOURCE_EVENT_TYPE_LAST = OTHER,
114 }; 114 };
115 115
116 const char* EVENTS_BASE_EXPORT GetComponentName(ui::LatencyComponentType type);
117
116 class EVENTS_BASE_EXPORT LatencyInfo { 118 class EVENTS_BASE_EXPORT LatencyInfo {
117 public: 119 public:
118 struct LatencyComponent { 120 struct LatencyComponent {
119 // Nondecreasing number that can be used to determine what events happened 121 // Nondecreasing number that can be used to determine what events happened
120 // in the component at the time this struct was sent on to the next 122 // in the component at the time this struct was sent on to the next
121 // component. 123 // component.
122 int64_t sequence_number; 124 int64_t sequence_number;
123 // Average time of events that happened in this component. 125 // Average time of events that happened in this component.
124 base::TimeTicks event_time; 126 base::TimeTicks event_time;
125 // Count of events that happened in this component 127 // Count of events that happened in this component
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 base::TimeTicks time, 189 base::TimeTicks time,
188 uint32_t event_count); 190 uint32_t event_count);
189 191
190 // Returns true if the a component with |type| and |id| is found in 192 // Returns true if the a component with |type| and |id| is found in
191 // the latency_components and the component is stored to |output| if 193 // the latency_components and the component is stored to |output| if
192 // |output| is not NULL. Returns false if no such component is found. 194 // |output| is not NULL. Returns false if no such component is found.
193 bool FindLatency(LatencyComponentType type, 195 bool FindLatency(LatencyComponentType type,
194 int64_t id, 196 int64_t id,
195 LatencyComponent* output) const; 197 LatencyComponent* output) const;
196 198
199 // Returns true if a component with |type| is found in the latency component.
200 // The first such component (when iterating over latency_components_) is
201 // stored to |output| if |output| is not NULL. Returns false if no such
202 // component is found.
203 bool FindLatency(LatencyComponentType type,
204 LatencyComponent*output) const;
205
197 void RemoveLatency(LatencyComponentType type); 206 void RemoveLatency(LatencyComponentType type);
198 207
199 // Returns true if there is still room for keeping the |input_coordinate|, 208 // Returns true if there is still room for keeping the |input_coordinate|,
200 // false otherwise. 209 // false otherwise.
201 bool AddInputCoordinate(const gfx::PointF& input_coordinate); 210 bool AddInputCoordinate(const gfx::PointF& input_coordinate);
202 211
203 uint32_t input_coordinates_size() const { return input_coordinates_size_; } 212 uint32_t input_coordinates_size() const { return input_coordinates_size_; }
204 const gfx::PointF* input_coordinates() const { return input_coordinates_; } 213 const gfx::PointF* input_coordinates() const { return input_coordinates_; }
205 214
206 const LatencyMap& latency_components() const { return latency_components_; } 215 const LatencyMap& latency_components() const { return latency_components_; }
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
253 #if !defined(OS_IOS) 262 #if !defined(OS_IOS)
254 friend struct IPC::ParamTraits<ui::LatencyInfo>; 263 friend struct IPC::ParamTraits<ui::LatencyInfo>;
255 friend struct mojo::StructTraits<ui::mojom::LatencyInfoDataView, 264 friend struct mojo::StructTraits<ui::mojom::LatencyInfoDataView,
256 ui::LatencyInfo>; 265 ui::LatencyInfo>;
257 #endif 266 #endif
258 }; 267 };
259 268
260 } // namespace ui 269 } // namespace ui
261 270
262 #endif // UI_EVENTS_LATENCY_INFO_H_ 271 #endif // UI_EVENTS_LATENCY_INFO_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698