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

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

Issue 15027003: Add histograms for MouseEventPrefetch.Mouse* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: nits 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 b1c7e2d3a9c8388bd02da59cc4881e50fbd6a08c..fe74e916040867cd9fb5bb3a5ec3373e2e413133 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -1096,6 +1096,50 @@ other types of suffix sets.
</summary>
</histogram>
+<histogram name="MouseEventPrefetch.MouseDownDuration_Click" units="ms">
+ <summary>
+ Measures the time elapsed between when the user mousedown-ed a link and when
+ the user clicked a link.
+ </summary>
+</histogram>
+
+<histogram name="MouseEventPrefetch.MouseDownFollowedByClick"
+ enum="MouseEventFollowedByClick">
+ <summary>
+ For each click handled by an HTML anchor tag link, whether Blink saw a
+ mousedown event preceding it. This is only measured for clicks handled by
+ the anchor tag's default click event handler.
+ </summary>
+</histogram>
+
+<histogram name="MouseEventPrefetch.MouseDowns">
+ <summary>
+ The number of mousedown events detected at HTML anchor-tag links' default
+ event handler.
+ </summary>
+</histogram>
+
+<histogram name="MouseEventPrefetch.MouseOverDuration_Click" units="ms">
+ <summary>
+ Measures the time elapsed between when the user mouseover-ed a link and when
+ the user clicked a link.
+ </summary>
+</histogram>
+
+<histogram name="MouseEventPrefetch.MouseOverDuration_NoClick" units="ms">
+ <summary>
+ Measures the time elapsed between when the user mouseover-ed a link and when
+ the user mouseout-ed a link without click.
+ </summary>
+</histogram>
+
+<histogram name="MouseEventPrefetch.MouseOvers">
+ <summary>
+ The number of mouseover 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>
@@ -9388,6 +9432,11 @@ other types of suffix sets.
<int value="9" label="PRERENDER_LOAD">Speculative prerendering of a page</int>
</enum>
+<enum name="MouseEventFollowedByClick" type="int">
+ <int value="0" label="Caught event before click"/>
+ <int value="1" label="Misses event before click"/>
+</enum>
+
<enum name="NavigationScheme" type="int">
<int value="0" label="(Unknown)"/>
<int value="1" label="http"/>
« 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