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

Unified Diff: tools/metrics/histograms/histograms.xml

Side-by-side diff isn't available for this file because of its large size.
Issue 1693463003: Track number of instances with a corrupt allocator. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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:
Download patch
« no previous file with comments | « base/metrics/histogram_persistence.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/metrics/histograms/histograms.xml
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml
index 8fa1d4f1cc62bc27c2400fd5b5af04242b2a5517..27e43f5db96159a7d8753820d7797f361cfb07ab 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -60299,15 +60299,16 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</enum>
<enum name="CreatePersistentHistogramResult" type="int">
- <int value="0" label="Histogram successfully created in persistent space."/>
+ <int value="0" label="Success: Histogram created in persistent space."/>
<int value="1" label="Error: Invalid metadata pointer. (coding error)"/>
<int value="2" label="Error: Invalid metdata."/>
<int value="3" label="Error: Invalid 'ranges' array."/>
<int value="4" label="Error: Invalid 'counts' array."/>
- <int value="5" label="Error: Allocator is corrupt."/>
- <int value="6" label="Error: Allocator is full."/>
- <int value="7" label="Error: Allocator failed (unknown error)."/>
+ <int value="5" label="Failed: Allocator is corrupt."/>
+ <int value="6" label="Failed: Allocator is full."/>
+ <int value="7" label="Failed: Allocator failed (unknown error)."/>
<int value="8" label="Error: Unknown histogram type."/>
+ <int value="9" label="Error: Allocator has become corrupted."/>
</enum>
<enum name="CredentialFilteredType" type="int">
« no previous file with comments | « base/metrics/histogram_persistence.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698