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

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: added missing histogram MouseEventPrefetch.MouseDownDuration_Click 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 535d3bcc75c299c05a279f2200f158f49038f860..321388820ca759fec86a2a8b0ec715e00d65cfde 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -1084,6 +1084,49 @@ 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="BooleanHit">
+ <summary>
+ Hits: The number of mousedown events detected prior to HTML anchor-tag
+ links' default click event handler. Miss: The number of HTML anchor-tag
+ links' default click events without prior mousedown events.
Ilya Sherman 2013/05/07 02:41:10 It seems like you'd derive some benefit by creatin
kouhei (in TOK) 2013/05/07 03:37:03 Done.
+ </summary>
+</histogram>
+
+<histogram name="MouseEventPrefetch.MouseDowns">
+ <summary>
+ The number of mousedown events detected at HTML anchor-tag links' default
+ event handler.
Ilya Sherman 2013/05/07 02:41:10 Does this histogram just have a single bucket? If
kouhei (in TOK) 2013/05/07 03:37:03 The number will be compared to the hits of MouseOv
+ </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>
« 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