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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 2775013002: Add a UMA counter for tap disambiguation result. (Closed)
Patch Set: Created 3 years, 8 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
Index: tools/metrics/histograms/histograms.xml
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml
index 303ecd95778148fe122524c94f37dde5b5747e04..661cd637ce5f293ffd1e4b5c80d627bda57af887 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -51509,6 +51509,13 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="PopupZoomer.TapDisambiguation" enum="TapDisambiguation">
Ilya Sherman 2017/03/24 22:16:57 It looks like you're adding a new top-level catego
aelias_OOO_until_Jul13 2017/03/24 22:30:31 OK, switched to existing category "Touchscreen".
+ <owner>aelias@chromium.org</owner>
+ <summary>
+ How the user interacted with the tap disambiguation feature on Android.
+ </summary>
+</histogram>
+
<histogram name="Power.BacklightLevelOnAC" units="%">
<owner>derat@chromium.org</owner>
<summary>
@@ -112305,6 +112312,13 @@ from previous Chrome versions.
<int value="1" label="Undelayed Tap"/>
</enum>
+<enum name="TapDisambiguation" type="int">
+ <int value="0" label="TappedInside"/>
+ <int value="1" label="TappedOutside"/>
+ <int value="2" label="BackButton"/>
+ <int value="3" label="Other"/>
+</enum>
+
<enum name="TcpSocketStatus" type="int">
<int value="0" label="Unknown"/>
<int value="1" label="Fast Connection Return"/>

Powered by Google App Engine
This is Rietveld 408576698