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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 1425533011: Support "shared" histograms between processes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@shmem-alloc
Patch Set: moved Create-Result histogram to private space and added to histograms.xml 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 | « content/child/child_histogram_message_filter.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 9abcaaaf6acbc5e76ac78f63feee03e994e581f2..47c86883b034168b403ffb943afac4f68ec2a281 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -51671,6 +51671,16 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="UMA.CreatePersistentHistogram.Result"
+ enum="CreatePersistentHistogramResult">
+ <owner>asvitkine@chromium.org</owner>
+ <owner>bcwhite@chromium.org</owner>
+ <summary>
+ Records attempts to create histograms in presistent space and any errors
+ encountered when doing so.
+ </summary>
+</histogram>
+
<histogram name="UMA.Discarded Log Events">
<owner>asvitkine@chromium.org</owner>
<summary>
@@ -59837,6 +59847,17 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
<int value="2147483646" label="STATUS_DATATYPE_MISALIGNMENT"/>
</enum>
+<enum name="CreatePersistentHistogramResult" type="int">
+ <int value="0" label="Histogram successfully 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)."/>
+</enum>
+
<enum name="CredentialFilteredType" type="int">
<int value="0" label="No sync credentials present"/>
<int value="1" label="Sync credentials were removed"/>
« no previous file with comments | « content/child/child_histogram_message_filter.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698