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

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

Issue 14740016: Revert r197164: Avoid crashing the browser on truncated reads [...] (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased 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 | « net/http/http_cache_transaction.cc ('k') | 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 838 matching lines...) Expand 10 before | Expand all | Expand 10 after
849 The time spent waiting for write lock on a disk cache entry. 849 The time spent waiting for write lock on a disk cache entry.
850 </summary> 850 </summary>
851 </histogram> 851 </histogram>
852 852
853 <histogram name="HttpCache.OfflineStatus" enum="OfflineStatus"> 853 <histogram name="HttpCache.OfflineStatus" enum="OfflineStatus">
854 <summary> 854 <summary>
855 Result of a main page HttpCacheTransaction if offline mode had been enabled. 855 Result of a main page HttpCacheTransaction if offline mode had been enabled.
856 </summary> 856 </summary>
857 </histogram> 857 </histogram>
858 858
859 <histogram name="HttpCache.TruncatedHeader" units="BooleanTruncated">
860 <summary>Whether cache headers were truncated before read.</summary>
861 </histogram>
862
863 <histogram name="HttpCache.TruncatedMetadata" units="BooleanTruncated">
864 <summary>Whether cache entry metadata was truncated before read.</summary>
865 </histogram>
866
867 <histogram name="Import.ImporterType.AutoImport" enum="ImporterType"> 859 <histogram name="Import.ImporterType.AutoImport" enum="ImporterType">
868 <summary>The importer used on first run Auto Import.</summary> 860 <summary>The importer used on first run Auto Import.</summary>
869 </histogram> 861 </histogram>
870 862
871 <histogram name="Import.ImporterType.BookmarksAPI" enum="ImporterType"> 863 <histogram name="Import.ImporterType.BookmarksAPI" enum="ImporterType">
872 <summary>The importer used on import from the bookmarks file API.</summary> 864 <summary>The importer used on import from the bookmarks file API.</summary>
873 </histogram> 865 </histogram>
874 866
875 <histogram name="Import.ImporterType.ImportDataHandler" enum="ImporterType"> 867 <histogram name="Import.ImporterType.ImportDataHandler" enum="ImporterType">
876 <summary> 868 <summary>
(...skipping 6505 matching lines...) Expand 10 before | Expand all | Expand 10 after
7382 <enum name="BooleanSuccess" type="int"> 7374 <enum name="BooleanSuccess" type="int">
7383 <int value="0" label="Failure"/> 7375 <int value="0" label="Failure"/>
7384 <int value="1" label="Success"/> 7376 <int value="1" label="Success"/>
7385 </enum> 7377 </enum>
7386 7378
7387 <enum name="BooleanTabDiscard" type="int"> 7379 <enum name="BooleanTabDiscard" type="int">
7388 <int value="0" label="Memory OK, no discards"/> 7380 <int value="0" label="Memory OK, no discards"/>
7389 <int value="1" label="Memory low, tabs discarded"/> 7381 <int value="1" label="Memory low, tabs discarded"/>
7390 </enum> 7382 </enum>
7391 7383
7392 <enum name="BooleanTruncated" type="int">
7393 <int value="0" label="Was Not Truncated"/>
7394 <int value="1" label="Was Truncated"/>
7395 </enum>
7396
7397 <enum name="BooleanUsage" type="int"> 7384 <enum name="BooleanUsage" type="int">
7398 <int value="0" label="Not Used"/> 7385 <int value="0" label="Not Used"/>
7399 <int value="1" label="Used"/> 7386 <int value="1" label="Used"/>
7400 </enum> 7387 </enum>
7401 7388
7402 <enum name="BooleanWiped" type="int"> 7389 <enum name="BooleanWiped" type="int">
7403 <int value="0" label="Re-enabled"/> 7390 <int value="0" label="Re-enabled"/>
7404 <int value="1" label="Wiped out"/> 7391 <int value="1" label="Wiped out"/>
7405 </enum> 7392 </enum>
7406 7393
(...skipping 4335 matching lines...) Expand 10 before | Expand all | Expand 10 after
11742 <fieldtrial name="SSLResumption"> 11729 <fieldtrial name="SSLResumption">
11743 <group name="Resume_Handshake" label="Session Resumption"/> 11730 <group name="Resume_Handshake" label="Session Resumption"/>
11744 <group name="Full_Handshake" label="Full"/> 11731 <group name="Full_Handshake" label="Full"/>
11745 <affected-histogram name="Net.SSL_Connection_Latency"/> 11732 <affected-histogram name="Net.SSL_Connection_Latency"/>
11746 <affected-histogram name="Net.SSL_Connection_Latency_Google"/> 11733 <affected-histogram name="Net.SSL_Connection_Latency_Google"/>
11747 </fieldtrial> 11734 </fieldtrial>
11748 11735
11749 </fieldtrials> 11736 </fieldtrials>
11750 11737
11751 </histogram-configuration> 11738 </histogram-configuration>
OLDNEW
« no previous file with comments | « net/http/http_cache_transaction.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698