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

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: custom enum 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"
1095 enum="MouseEventFollowedByClick">
1096 <summary>
1097 Caught: The number of mousedown events detected prior to HTML anchor-tag
1098 links' default click event handler. Miss: The number of HTML anchor-tag
1099 links' default click events without prior mousedown events.
Ilya Sherman 2013/05/07 08:52:23 Optional nit: I think this description would be ea
1100 </summary>
1101 </histogram>
1102
1103 <histogram name="MouseEventPrefetch.MouseDowns">
1104 <summary>
1105 The number of mousedown events detected at HTML anchor-tag links' default
1106 event handler.
1107 </summary>
1108 </histogram>
1109
1110 <histogram name="MouseEventPrefetch.MouseOverDuration_Click" units="ms">
1111 <summary>
1112 Measures the time elapsed between when the user mouseover-ed a link and when
1113 the user clicked a link.
1114 </summary>
1115 </histogram>
1116
1117 <histogram name="MouseEventPrefetch.MouseOverDuration_NoClick" units="ms">
1118 <summary>
1119 Measures the time elapsed between when the user mouseover-ed a link and when
1120 the user mouseout-ed a link without click.
1121 </summary>
1122 </histogram>
1123
1124 <histogram name="MouseEventPrefetch.MouseOvers">
1125 <summary>
1126 The number of mouseover events detected at HTML anchor-tag links' default
1127 event handler.
1128 </summary>
1129 </histogram>
1130
1087 <histogram name="Navigation.MainFrameScheme" enum="NavigationScheme"> 1131 <histogram name="Navigation.MainFrameScheme" enum="NavigationScheme">
1088 <summary>The scheme of the URL for each main-frame navigation.</summary> 1132 <summary>The scheme of the URL for each main-frame navigation.</summary>
1089 </histogram> 1133 </histogram>
1090 1134
1091 <histogram name="Net.AsyncResourceHandler_PendingDataCount"> 1135 <histogram name="Net.AsyncResourceHandler_PendingDataCount">
1092 <summary> 1136 <summary>
1093 The count of unacknowledged ResourceMsg_DataReceived messages. This message 1137 The count of unacknowledged ResourceMsg_DataReceived messages. This message
1094 is sent once per chunk of data read from the network. 1138 is sent once per chunk of data read from the network.
1095 </summary> 1139 </summary>
1096 </histogram> 1140 </histogram>
(...skipping 8253 matching lines...) Expand 10 before | Expand all | Expand 10 after
9350 <int value="6" label="LINK_LOAD_RELOAD">JS/link directed reload</int> 9394 <int value="6" label="LINK_LOAD_RELOAD">JS/link directed reload</int>
9351 <int value="7" label="LINK_LOAD_CACHE_STALE_OK"> 9395 <int value="7" label="LINK_LOAD_CACHE_STALE_OK">
9352 back/forward or encoding change 9396 back/forward or encoding change
9353 </int> 9397 </int>
9354 <int value="8" label="LINK_LOAD_CACHE_ONLY"> 9398 <int value="8" label="LINK_LOAD_CACHE_ONLY">
9355 Allow stale data (avoid doing a re-post) 9399 Allow stale data (avoid doing a re-post)
9356 </int> 9400 </int>
9357 <int value="9" label="PRERENDER_LOAD">Speculative prerendering of a page</int> 9401 <int value="9" label="PRERENDER_LOAD">Speculative prerendering of a page</int>
9358 </enum> 9402 </enum>
9359 9403
9404 <enum name="MouseEventFollowedByClick" type="int">
9405 <int value="0" label="Caught_event_before_click"/>
Ilya Sherman 2013/05/07 08:52:23 nit: No need for underscores; you can use spaces.
9406 <int value="1" label="Miss_event_before_click"/>
Ilya Sherman 2013/05/07 08:52:23 Ditto. Also, probably "Missed" rather than "Miss"
9407 </enum>
9408
9360 <enum name="NavigationScheme" type="int"> 9409 <enum name="NavigationScheme" type="int">
9361 <int value="0" label="(Unknown)"/> 9410 <int value="0" label="(Unknown)"/>
9362 <int value="1" label="http"/> 9411 <int value="1" label="http"/>
9363 <int value="2" label="https"/> 9412 <int value="2" label="https"/>
9364 <int value="3" label="file"/> 9413 <int value="3" label="file"/>
9365 <int value="4" label="ftp"/> 9414 <int value="4" label="ftp"/>
9366 <int value="5" label="data"/> 9415 <int value="5" label="data"/>
9367 <int value="6" label="javascript"/> 9416 <int value="6" label="javascript"/>
9368 <int value="7" label="about"/> 9417 <int value="7" label="about"/>
9369 <int value="8" label="chrome"/> 9418 <int value="8" label="chrome"/>
(...skipping 2613 matching lines...) Expand 10 before | Expand all | Expand 10 after
11983 <fieldtrial name="SSLResumption"> 12032 <fieldtrial name="SSLResumption">
11984 <group name="Resume_Handshake" label="Session Resumption"/> 12033 <group name="Resume_Handshake" label="Session Resumption"/>
11985 <group name="Full_Handshake" label="Full"/> 12034 <group name="Full_Handshake" label="Full"/>
11986 <affected-histogram name="Net.SSL_Connection_Latency"/> 12035 <affected-histogram name="Net.SSL_Connection_Latency"/>
11987 <affected-histogram name="Net.SSL_Connection_Latency_Google"/> 12036 <affected-histogram name="Net.SSL_Connection_Latency_Google"/>
11988 </fieldtrial> 12037 </fieldtrial>
11989 12038
11990 </fieldtrials> 12039 </fieldtrials>
11991 12040
11992 </histogram-configuration> 12041 </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