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

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

Issue 14533007: Avoid crashing the browser on truncated reads from the cache backend (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: comments addressed 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
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 808 matching lines...) Expand 10 before | Expand all | Expand 10 after
819 The time spent waiting for write lock on a disk cache entry. 819 The time spent waiting for write lock on a disk cache entry.
820 </summary> 820 </summary>
821 </histogram> 821 </histogram>
822 822
823 <histogram name="HttpCache.OfflineStatus" enum="OfflineStatus"> 823 <histogram name="HttpCache.OfflineStatus" enum="OfflineStatus">
824 <summary> 824 <summary>
825 Result of a main page HttpCacheTransaction if offline mode had been enabled. 825 Result of a main page HttpCacheTransaction if offline mode had been enabled.
826 </summary> 826 </summary>
827 </histogram> 827 </histogram>
828 828
829 <histogram name="HttpCache.TruncatedHeader" units="BooleanTruncated">
830 <summary>Whether cache headers were truncated before read.</summary>
831 </histogram>
832
833 <histogram name="HttpCache.TruncatedMetadata" units="BooleanTruncated">
834 <summary>Whether cache entry metadata was truncated before read.</summary>
835 </histogram>
836
829 <histogram name="Import.ImporterType.AutoImport" enum="ImporterType"> 837 <histogram name="Import.ImporterType.AutoImport" enum="ImporterType">
830 <summary>The importer used on first run Auto Import.</summary> 838 <summary>The importer used on first run Auto Import.</summary>
831 </histogram> 839 </histogram>
832 840
833 <histogram name="Import.ImporterType.BookmarksAPI" enum="ImporterType"> 841 <histogram name="Import.ImporterType.BookmarksAPI" enum="ImporterType">
834 <summary>The importer used on import from the bookmarks file API.</summary> 842 <summary>The importer used on import from the bookmarks file API.</summary>
835 </histogram> 843 </histogram>
836 844
837 <histogram name="Import.ImporterType.ImportDataHandler" enum="ImporterType"> 845 <histogram name="Import.ImporterType.ImportDataHandler" enum="ImporterType">
838 <summary> 846 <summary>
(...skipping 5535 matching lines...) Expand 10 before | Expand all | Expand 10 after
6374 <enum name="BooleanSuccess" type="int"> 6382 <enum name="BooleanSuccess" type="int">
6375 <int value="0" label="Failure"/> 6383 <int value="0" label="Failure"/>
6376 <int value="1" label="Success"/> 6384 <int value="1" label="Success"/>
6377 </enum> 6385 </enum>
6378 6386
6379 <enum name="BooleanTabDiscard" type="int"> 6387 <enum name="BooleanTabDiscard" type="int">
6380 <int value="0" label="Memory OK, no discards"/> 6388 <int value="0" label="Memory OK, no discards"/>
6381 <int value="1" label="Memory low, tabs discarded"/> 6389 <int value="1" label="Memory low, tabs discarded"/>
6382 </enum> 6390 </enum>
6383 6391
6392 <enum name="BooleanTruncated" type="int">
6393 <int value="0" label="Was Not Truncated"/>
6394 <int value="1" label="Was Truncated"/>
6395 </enum>
6396
6384 <enum name="BooleanUsage" type="int"> 6397 <enum name="BooleanUsage" type="int">
6385 <int value="0" label="Not Used"/> 6398 <int value="0" label="Not Used"/>
6386 <int value="1" label="Used"/> 6399 <int value="1" label="Used"/>
6387 </enum> 6400 </enum>
6388 6401
6389 <enum name="BooleanWiped" type="int"> 6402 <enum name="BooleanWiped" type="int">
6390 <int value="0" label="Re-enabled"/> 6403 <int value="0" label="Re-enabled"/>
6391 <int value="1" label="Wiped out"/> 6404 <int value="1" label="Wiped out"/>
6392 </enum> 6405 </enum>
6393 6406
(...skipping 4181 matching lines...) Expand 10 before | Expand all | Expand 10 after
10575 <fieldtrial name="SSLResumption"> 10588 <fieldtrial name="SSLResumption">
10576 <group name="Resume_Handshake" label="Session Resumption"/> 10589 <group name="Resume_Handshake" label="Session Resumption"/>
10577 <group name="Full_Handshake" label="Full"/> 10590 <group name="Full_Handshake" label="Full"/>
10578 <affected-histogram name="Net.SSL_Connection_Latency"/> 10591 <affected-histogram name="Net.SSL_Connection_Latency"/>
10579 <affected-histogram name="Net.SSL_Connection_Latency_Google"/> 10592 <affected-histogram name="Net.SSL_Connection_Latency_Google"/>
10580 </fieldtrial> 10593 </fieldtrial>
10581 10594
10582 </fieldtrials> 10595 </fieldtrials>
10583 10596
10584 </histogram-configuration> 10597 </histogram-configuration>
OLDNEW
« net/http/http_cache_transaction.cc ('K') | « net/http/http_cache_transaction.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698