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

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

Side-by-side diff isn't available for this file because of its large size.
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: bool -> enum, renamed metric 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') | ui/events/x/events_x_utils.cc » ('J')
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 dbc6893f3bd19c012904bc24a7b57367a90f4199..3d6f332bf898823e0f8b0e645a034d6b0f29bad8 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -12395,6 +12395,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>
@@ -69662,6 +69673,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="Timestamps use invalid time base"/>
+ <int value="1" label="Timestamps use valid time base"/>
Ilya Sherman 2016/05/23 18:36:33 Optional nit: I'd omit the shared "Timestamps use"
+</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') | ui/events/x/events_x_utils.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698