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

Side by Side Diff: tools/metrics/histograms/histograms.xml

Issue 14143007: Define histograms for Android-specific memory conditions in the field. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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 | Annotate | Revision Log
« 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 919 matching lines...) Expand 10 before | Expand all | Expand 10 after
930 <histogram name="Media.DetectedVideoCodec" enum="FFmpegCodecs"> 930 <histogram name="Media.DetectedVideoCodec" enum="FFmpegCodecs">
931 <summary>Video codec used in HTML5 media.</summary> 931 <summary>Video codec used in HTML5 media.</summary>
932 </histogram> 932 </histogram>
933 933
934 <histogram name="Media.VAVDAH264.DecoderFailure" enum="VAVDAH264DecoderFailure"> 934 <histogram name="Media.VAVDAH264.DecoderFailure" enum="VAVDAH264DecoderFailure">
935 <summary> 935 <summary>
936 Error codes reported by video decode using VA-API hardware video decoder. 936 Error codes reported by video decode using VA-API hardware video decoder.
937 </summary> 937 </summary>
938 </histogram> 938 </histogram>
939 939
940 <histogram name="MemoryAndroid.DeviceMemoryClass">
941 <summary>
942 Value of getMemoryClass() recorded once upon startup. This is an integer,
943 device-specific constant correlated with the amount of memory available on
944 Android device.
945 </summary>
946 </histogram>
947
948 <histogram name="MemoryAndroid.EvictionReason" enum="AndroidEvictionReason">
949 <summary>
950 Reasons behind evictions of individual tabs, recorded upon each tab
951 eviction.
952 </summary>
953 </histogram>
954
955 <histogram name="MemoryAndroid.LowMemoryLoadedTabCount">
956 <summary>
957 Number of loaded (memory-resident) tabs when LowMemory notification is
958 delivered.
959 </summary>
960 </histogram>
961
962 <histogram name="MemoryAndroid.LowMemoryTimeBetween" units="milliseconds">
963 <summary>
964 Time between two consecutive LowMemory notification in one foreground
965 session.
966 </summary>
967 </histogram>
968
969 <histogram name="MemoryAndroid.NotificationBackground"
970 enum="AndroidMemoryNotificationBackground">
971 <summary>
972 Memory notifications delivered through system callbacks to Chrome while in
973 the background.
974 </summary>
975 </histogram>
976
977 <histogram name="MemoryAndroid.NotificationForeground"
978 enum="AndroidMemoryNotificationForeground">
979 <summary>
980 Memory notifications delivered through system callbacks to Chrome while in
981 the foreground - we count LowMemory notification vs particular levels of
982 TrimMemory foreground notification.
983 </summary>
984 </histogram>
985
940 <histogram name="Navigation.MainFrameScheme" enum="NavigationScheme"> 986 <histogram name="Navigation.MainFrameScheme" enum="NavigationScheme">
941 <summary>The scheme of the URL for each main-frame navigation.</summary> 987 <summary>The scheme of the URL for each main-frame navigation.</summary>
942 </histogram> 988 </histogram>
943 989
944 <histogram name="Net.AsyncResourceHandler_PendingDataCount"> 990 <histogram name="Net.AsyncResourceHandler_PendingDataCount">
945 <summary> 991 <summary>
946 The count of unacknowledged ResourceMsg_DataReceived messages. This message 992 The count of unacknowledged ResourceMsg_DataReceived messages. This message
947 is sent once per chunk of data read from the network. 993 is sent once per chunk of data read from the network.
948 </summary> 994 </summary>
949 </histogram> 995 </histogram>
(...skipping 5025 matching lines...) Expand 10 before | Expand all | Expand 10 after
5975 6021
5976 <!-- Enum types --> 6022 <!-- Enum types -->
5977 6023
5978 <enums> 6024 <enums>
5979 6025
5980 <enum name="Abandoned" type="int"> 6026 <enum name="Abandoned" type="int">
5981 <int value="0" label="Finished"/> 6027 <int value="0" label="Finished"/>
5982 <int value="1" label="Abandoned"/> 6028 <int value="1" label="Abandoned"/>
5983 </enum> 6029 </enum>
5984 6030
6031 <enum name="AndroidEvictionReason" type="int">
6032 <int value="0" label="TabUnusedTooLong"/>
6033 <int value="1" label="TabUnusedInSession"/>
6034 <int value="2" label="LimitOfActiveTabs"/>
6035 <int value="3" label="EvictNTabs"/>
6036 <int value="4" label="EvictAll"/>
6037 </enum>
6038
6039 <enum name="AndroidMemoryNotificationBackground" type="int">
6040 <int value="0" label="TrimMemoryUiHidden"/>
6041 <int value="1" label="TrimMemoryBackground"/>
6042 <int value="2" label="TrimMemoryModerate"/>
6043 <int value="3" label="TrimMemoryComplete"/>
6044 </enum>
6045
6046 <enum name="AndroidMemoryNotificationForeground" type="int">
6047 <int value="0" label="TrimMemoryRunningModerate"/>
6048 <int value="1" label="TrimMemoryRunningLow"/>
6049 <int value="2" label="TrimMemoryRunningCritical"/>
6050 <int value="3" label="LowMemory"/>
6051 </enum>
6052
5985 <enum name="AudioRendererEvents" type="int"> 6053 <enum name="AudioRendererEvents" type="int">
5986 <int value="0" label="Initialized"/> 6054 <int value="0" label="Initialized"/>
5987 <int value="1" label="Runtime error"/> 6055 <int value="1" label="Runtime error"/>
5988 </enum> 6056 </enum>
5989 6057
5990 <enum name="AutocheckoutBubble" type="int"> 6058 <enum name="AutocheckoutBubble" type="int">
5991 <int value="0" label="Created"/> 6059 <int value="0" label="Created"/>
5992 <int value="1" label="Accepted"/> 6060 <int value="1" label="Accepted"/>
5993 <int value="2" label="Dismissed"/> 6061 <int value="2" label="Dismissed"/>
5994 <int value="3" label="Ignored"/> 6062 <int value="3" label="Ignored"/>
(...skipping 4358 matching lines...) Expand 10 before | Expand all | Expand 10 after
10353 <fieldtrial name="SSLResumption"> 10421 <fieldtrial name="SSLResumption">
10354 <group name="Resume_Handshake" label="Session Resumption"/> 10422 <group name="Resume_Handshake" label="Session Resumption"/>
10355 <group name="Full_Handshake" label="Full"/> 10423 <group name="Full_Handshake" label="Full"/>
10356 <affected-histogram name="Net.SSL_Connection_Latency"/> 10424 <affected-histogram name="Net.SSL_Connection_Latency"/>
10357 <affected-histogram name="Net.SSL_Connection_Latency_Google"/> 10425 <affected-histogram name="Net.SSL_Connection_Latency_Google"/>
10358 </fieldtrial> 10426 </fieldtrial>
10359 10427
10360 </fieldtrials> 10428 </fieldtrials>
10361 10429
10362 </histogram-configuration> 10430 </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