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

Side by Side 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 unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!-- 1 <!--
2 Copyright 2013 The Chromium Authors. All rights reserved. 2 Copyright 2013 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be 3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file. 4 found in the LICENSE file.
5 --> 5 -->
6 6
7 <!-- 7 <!--
8 This file is used to generate a comprehensive list of Chrome histograms along 8 This file is used to generate a comprehensive list of Chrome histograms along
9 with a detailed description for each histogram. 9 with a detailed description for each histogram.
10 10
(...skipping 1066 matching lines...) Expand 10 before | Expand all | Expand 10 after
1077 1077
1078 <histogram name="MemoryAndroid.NotificationForeground" 1078 <histogram name="MemoryAndroid.NotificationForeground"
1079 enum="AndroidMemoryNotificationForeground"> 1079 enum="AndroidMemoryNotificationForeground">
1080 <summary> 1080 <summary>
1081 Memory notifications delivered through system callbacks to Chrome while in 1081 Memory notifications delivered through system callbacks to Chrome while in
1082 the foreground - we count LowMemory notification vs particular levels of 1082 the foreground - we count LowMemory notification vs particular levels of
1083 TrimMemory foreground notification. 1083 TrimMemory foreground notification.
1084 </summary> 1084 </summary>
1085 </histogram> 1085 </histogram>
1086 1086
1087 <histogram name="MouseEventPrefetch.MouseDownDuration_Click" units="ms">
1088 <summary>
1089 Measures the time elapsed between when the user mousedown-ed a link and when
1090 the user clicked a link.
1091 </summary>
1092 </histogram>
1093
1094 <histogram name="MouseEventPrefetch.MouseDownFollowedByClick" enum="BooleanHit">
1095 <summary>
1096 Hits: The number of mousedown events detected prior to HTML anchor-tag
1097 links' default click event handler. Miss: The number of HTML anchor-tag
1098 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.
1099 </summary>
1100 </histogram>
1101
1102 <histogram name="MouseEventPrefetch.MouseDowns">
1103 <summary>
1104 The number of mousedown events detected at HTML anchor-tag links' default
1105 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
1106 </summary>
1107 </histogram>
1108
1109 <histogram name="MouseEventPrefetch.MouseOverDuration_Click" units="ms">
1110 <summary>
1111 Measures the time elapsed between when the user mouseover-ed a link and when
1112 the user clicked a link.
1113 </summary>
1114 </histogram>
1115
1116 <histogram name="MouseEventPrefetch.MouseOverDuration_NoClick" units="ms">
1117 <summary>
1118 Measures the time elapsed between when the user mouseover-ed a link and when
1119 the user mouseout-ed a link without click.
1120 </summary>
1121 </histogram>
1122
1123 <histogram name="MouseEventPrefetch.MouseOvers">
1124 <summary>
1125 The number of mouseover events detected at HTML anchor-tag links' default
1126 event handler.
1127 </summary>
1128 </histogram>
1129
1087 <histogram name="Navigation.MainFrameScheme" enum="NavigationScheme"> 1130 <histogram name="Navigation.MainFrameScheme" enum="NavigationScheme">
1088 <summary>The scheme of the URL for each main-frame navigation.</summary> 1131 <summary>The scheme of the URL for each main-frame navigation.</summary>
1089 </histogram> 1132 </histogram>
1090 1133
1091 <histogram name="Net.AsyncResourceHandler_PendingDataCount"> 1134 <histogram name="Net.AsyncResourceHandler_PendingDataCount">
1092 <summary> 1135 <summary>
1093 The count of unacknowledged ResourceMsg_DataReceived messages. This message 1136 The count of unacknowledged ResourceMsg_DataReceived messages. This message
1094 is sent once per chunk of data read from the network. 1137 is sent once per chunk of data read from the network.
1095 </summary> 1138 </summary>
1096 </histogram> 1139 </histogram>
(...skipping 10886 matching lines...) Expand 10 before | Expand all | Expand 10 after
11983 <fieldtrial name="SSLResumption"> 12026 <fieldtrial name="SSLResumption">
11984 <group name="Resume_Handshake" label="Session Resumption"/> 12027 <group name="Resume_Handshake" label="Session Resumption"/>
11985 <group name="Full_Handshake" label="Full"/> 12028 <group name="Full_Handshake" label="Full"/>
11986 <affected-histogram name="Net.SSL_Connection_Latency"/> 12029 <affected-histogram name="Net.SSL_Connection_Latency"/>
11987 <affected-histogram name="Net.SSL_Connection_Latency_Google"/> 12030 <affected-histogram name="Net.SSL_Connection_Latency_Google"/>
11988 </fieldtrial> 12031 </fieldtrial>
11989 12032
11990 </fieldtrials> 12033 </fieldtrials>
11991 12034
11992 </histogram-configuration> 12035 </histogram-configuration>
OLDNEW
« 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