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

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

Issue 2588873002: Delegate PersistedLogs metrics recording (Closed)
Patch Set: Fix tests Created 4 years 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 | « components/metrics/persisted_logs_unittest.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 559eba304158188c8c51f02806df16622ecad5fe..97d9a623077d107095d7c0610dc2db285cd8fbac 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -48622,6 +48622,12 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
<summary>The amount of time that elapsed during CreateProfilePrefs.</summary>
</histogram>
+<histogram name="PrefService.PersistentLogRecallProtobufs"
+ enum="PersistedLogsLogReadStatus">
+ <owner>holte@chromium.org</owner>
+ <summary>The status when loading PersistedLogs from Prefs.</summary>
+</histogram>
+
<histogram name="PreloadScanner.Counts" units="preloads">
<obsolete>
Deprecated 5/25/2016 in favor of PreloadScanner.Counts2
@@ -98463,6 +98469,19 @@ value.
<int value="11" label="PERMISSION_FLASH"/>
</enum>
+<enum name="PersistedLogsLogReadStatus" type="int">
+ <int value="0" label="RECALL_SUCCESS"/>
+ <int value="1" label="LIST_EMPTY"/>
+ <int value="2" label="LIST_SIZE_MISSING"/>
+ <int value="3" label="LIST_SIZE_TOO_SMALL"/>
+ <int value="4" label="LIST_SIZE_CORRUPTION"/>
+ <int value="5" label="LOG_STRING_CORRUPTION"/>
+ <int value="6" label="CHECKSUM_CORRUPTION"/>
+ <int value="7" label="CHECKSUM_STRING_CORRUPTION"/>
+ <int value="8" label="DECODE_FAIL"/>
+ <int value="9" label="DEPRECATED_XML_PROTO_MISMATCH"/>
+</enum>
+
<enum name="PersistentHistogramsInitResult" type="int">
<int value="0" label="Local-Memory Success"/>
<int value="1" label="Local-Memory Failure"/>
« no previous file with comments | « components/metrics/persisted_logs_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698