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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 2270173002: add stylus metrics (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: incorporate comments and rebase Created 4 years, 4 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
« ash/wm/stylus_metrics_recorder.cc ('K') | « ash/wm/stylus_metrics_recorder.cc ('k') | no next file » | 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 b2eab3d409c32612aeeb53a41df94422f6eea5a8..3b3baadd4b57511d2e86e7657c5befd67d05be06 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -12714,6 +12714,20 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="Event.DownEventCount.PerFormFactor" enum="DownEventFormFactor">
+ <owner>xiaoyinh@chromium.org</owner>
+ <summary>
+ Counts the number of down events generated by clamshell/touchview.
+ </summary>
+</histogram>
+
+<histogram name="Event.DownEventCount.PerInput" enum="DownEventSource">
+ <owner>xiaoyinh@chromium.org</owner>
+ <summary>
+ Counts the number of down events generated by Mouse/Touch/Stylus.
+ </summary>
+</histogram>
+
<histogram name="Event.DragDrop.Cancel" enum="DragDropEventSource">
<owner>mfomitchev@chromium.org</owner>
<summary>
@@ -73945,6 +73959,18 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
<int value="2" label="GET_NON_CACHABLE"/>
</enum>
+<enum name="DownEventFormFactor" type="int">
+ <int value="0" label="Clamshell"/>
+ <int value="1" label="Touchview"/>
+</enum>
+
+<enum name="DownEventSource" type="int">
+ <int value="0" label="Unknown"/>
+ <int value="1" label="Mouse"/>
+ <int value="2" label="stylus"/>
jdufault 2016/08/23 23:09:54 Stylus, Touch (note capitalization)?
xiaoyinh(OOO Sep 11-29) 2016/08/23 23:45:41 Done.
+ <int value="3" label="touch"/>
+</enum>
+
<enum name="DownloadContentDisposition" type="int">
<int value="0" label="Content-Disposition header present"/>
<int value="1" label="Valid"/>
« ash/wm/stylus_metrics_recorder.cc ('K') | « ash/wm/stylus_metrics_recorder.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698