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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 53283003: Added UMA stat for tracking accidental navigations on double tap. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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 | « content/public/android/javatests/src/org/chromium/content/browser/ContentViewGestureHandlerTest.java ('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 e43615147e9cccfb3eacba6890afe9f27203695b..906f98816664387606770f10113362b7e6c18cc2 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -18730,6 +18730,33 @@ other types of suffix sets.
</obsolete>
</histogram>
+<histogram name="Touchscreen.ActionAfterDoubleTapNoDelay"
+ enum="ActionAfterDoubleTap">
+ <summary>
+ On non-mobile sites, gesture taps are delayed to prevent double taps from
+ sending a click event. This stat tracks the user's first action within 5
+ seconds after a double tap gesture when the gesture tap delay is disabled.
+ </summary>
+</histogram>
+
+<histogram name="Touchscreen.ActionAfterDoubleTapWithDelay"
+ enum="ActionAfterDoubleTap">
+ <summary>
+ On non-mobile sites, gesture taps are delayed to prevent double taps from
+ sending a click event. This stat tracks the user's first action within 5
+ seconds after a double tap gesture when gesture tap events are delayed.
+ </summary>
+</histogram>
+
+<histogram name="Touchscreen.SingleTapType" enum="TapDelayType">
+ <summary>
+ On non-mobile sites, gesture taps are delayed to prevent double taps from
+ sending a click event. This stat counts the number of taps that are delayed
+ by the double-tap delay versus those that are sent immediately on mobile
+ sites.
+ </summary>
+</histogram>
+
<histogram name="Translate.AlwaysTranslateLang">
<summary>
The number of times the always translate option was selected in the
@@ -20139,6 +20166,12 @@ other types of suffix sets.
<int value="2" label="ScrolledMainFrameWithUnacceleratedFixedRootBackground"/>
</enum>
+<enum name="ActionAfterDoubleTap" type="int">
+ <int value="0" label="Navigated Back"/>
+ <int value="1" label="Stopped Navigation"/>
+ <int value="2" label="No Action"/>
+</enum>
+
<enum name="ActionUponResourceRequest" type="int">
<int value="0" label="Load resource"/>
<int value="1" label="Revalidate resource"/>
@@ -28474,6 +28507,11 @@ other types of suffix sets.
<int value="1" label="Revisit"/>
</enum>
+<enum name="TapDelayType" type="int">
+ <int value="0" label="Delayed Tap"/>
+ <int value="1" label="Undelayed Tap"/>
+</enum>
+
<enum name="TcpSocketStatus" type="int">
<int value="0" label="Unknown"/>
<int value="1" label="Fast Connection Return"/>
« no previous file with comments | « content/public/android/javatests/src/org/chromium/content/browser/ContentViewGestureHandlerTest.java ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698