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

Unified Diff: ui/events/latency_info.h

Issue 569653002: Add input coordinate information to InputLatency (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Use uint32 instead of size_t to unbreak IPC. Created 6 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/events/ipc/latency_info_param_traits.h ('k') | ui/events/latency_info.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/events/latency_info.h
diff --git a/ui/events/latency_info.h b/ui/events/latency_info.h
index 92d928d615837d1323f07112b9244c135af4e67d..2f534a7b3d4a5541f2639848265aadaa7dae0c69 100644
--- a/ui/events/latency_info.h
+++ b/ui/events/latency_info.h
@@ -95,9 +95,19 @@ struct EVENTS_BASE_EXPORT LatencyInfo {
uint32 event_count;
};
+ struct EVENTS_BASE_EXPORT InputCoordinate {
+ InputCoordinate();
+ InputCoordinate(float x, float y);
+
+ float x;
+ float y;
+ };
+
// Empirically determined constant based on a typical scroll sequence.
enum { kTypicalMaxComponentsPerLatencyInfo = 6 };
+ enum { kMaxInputCoordinates = 2 };
+
// Map a Latency Component (with a component-specific int64 id) to a
// component info.
typedef base::SmallMap<
@@ -153,6 +163,11 @@ struct EVENTS_BASE_EXPORT LatencyInfo {
void TraceEventType(const char* event_type);
LatencyMap latency_components;
+
+ // These coordinates represent window coordinates of the original input event.
+ uint32 input_coordinates_size;
+ InputCoordinate input_coordinates[kMaxInputCoordinates];
+
// The unique id for matching the ASYNC_BEGIN/END trace event.
int64 trace_id;
// Whether a terminal component has been added.
« no previous file with comments | « ui/events/ipc/latency_info_param_traits.h ('k') | ui/events/latency_info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698