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

Unified Diff: tools/metrics/histograms/histograms.xml

Issue 1982203002: Replace DCHECK() upon unexpected x11 event time with a workaround (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: removed dependency on event_utils, just inline EventTimeForNow() for now 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:
Download patch
« no previous file with comments | « no previous file | ui/events/x/events_x_utils.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/metrics/histograms/histograms.xml
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml
index 117c618a518207c98f3c2111644260c912f7c9d4..9fa065a3e114f65ab7621d7ef32e0eea8c80ebf9 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -12410,6 +12410,17 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="Event.TimestampHasValidTimebase" enum="EventTimestampValidity">
+ <owner>majidvp@chromium.org</owner>
+ <owner>tdresser@chromium.org</owner>
+ <owner>caseq@chromium.org</owner>
+ <summary>
+ Whether the timestapms on input events produced by the windowing system
+ appear to be sharing the same time base as TimeTicks, modulo possible
+ roll-over.
+ </summary>
+</histogram>
+
<histogram name="Event.Touch.TargetAndDispatchResult"
enum="TouchTargetAndDispatchResultType">
<obsolete>
@@ -69735,6 +69746,11 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
<int value="5" label="Forced Non-Blocking"/>
</enum>
+<enum name="EventTimestampValidity" type="int">
+ <int value="0" label="Invalid time base"/>
+ <int value="1" label="Valid time base"/>
+</enum>
+
<enum name="EVWhitelistStatus" type="int">
<int value="0" label="Not present"/>
<int value="1" label="Invalid"/>
« no previous file with comments | « no previous file | ui/events/x/events_x_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698