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

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

Issue 14652033: Add histograms for MouseEventPrefetch.Tap* and fix wrong enum description for MouseEventFollowedByC… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix typo Created 7 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:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | 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 92c3c46db4d6cffad18ae5f00eb829b118082c19..2bb4d25e5db40fc0976f421daae30bed78b68f08 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -1221,6 +1221,27 @@ other types of suffix sets.
</summary>
</histogram>
+<histogram name="MouseEventPrefetch.TapDownDuration_Click" units="ms">
+ <summary>
+ Measures the time elapsed between when the user tapdown-ed a link and when
+ the user clicked a link.
+ </summary>
+</histogram>
+
+<histogram name="MouseEventPrefetch.TapDowns">
+ <summary>
+ The number of gesturetapdown events detected at HTML anchor-tag links'
+ default event handler.
+ </summary>
+</histogram>
+
+<histogram name="MouseEventPrefetch.TapUnconfirmeds">
+ <summary>
+ The number of gesturetapunconfirmed events detected at HTML anchor-tag
+ links' default event handler.
+ </summary>
+</histogram>
+
<histogram name="Navigation.MainFrameScheme" enum="NavigationScheme">
<summary>The scheme of the URL for each main-frame navigation.</summary>
</histogram>
@@ -9878,8 +9899,8 @@ other types of suffix sets.
</enum>
<enum name="MouseEventFollowedByClick" type="int">
- <int value="0" label="Caught event before click"/>
- <int value="1" label="Misses event before click"/>
+ <int value="0" label="Missed event before click"/>
+ <int value="1" label="Caught event before click"/>
</enum>
<enum name="NavigationScheme" type="int">
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698