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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 1243293003: Platform-specific prune state storage. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@prune1
Patch Set: moved uninstall cleanup to separate cl Created 5 years, 3 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 | « chrome/chrome_tests_unit.gypi ('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 dcfd699d45196af1e66b3cedaedac7dbc25d51d6..7124f344e3f94870c9aac18b677d5cfd0c7622eb 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -22040,7 +22040,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
<owner>bengr@chromium.org</owner>
<summary>
The difference between the size specified in the X-Original-Content-Length
- header and the size of teh response body. This is zero if the
+ header and the size of the response body. This is zero if the
X-Original-Content-Length header is not present in the response.
</summary>
</histogram>
@@ -38587,6 +38587,19 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="SBIRS.PSSDataStoreSize" units="bytes">
+ <owner>grt@google.com</owner>
+ <summary>
+ The size, in bytes, of a profile's platform state store. This hisogram is
+ logged on each write, which always replaces any previous contents.
+ </summary>
+</histogram>
+
+<histogram name="SBIRS.PSSLoadResult" enum="PlatformStateStoreLoadResult">
+ <owner>grt@google.com</owner>
+ <summary>The result of loading data from the platform state store.</summary>
+</histogram>
+
<histogram name="SBIRS.ReceivedIncident" enum="IncidentType">
<owner>grt@google.com</owner>
<summary>
@@ -67482,6 +67495,22 @@ To add a new entry, add it with any value and run test to compute valid value.
<int value="4" label="Database error"/>
</enum>
+<enum name="PlatformStateStoreLoadResult" type="int">
+ <int value="0" label="SUCCESS"/>
+ <int value="1" label="CLEARED_DATA">
+ Platform data cleared for new profile.
+ </int>
+ <int value="2" label="CLEARED_NO_DATA">
+ Empty platform data cleared for new profile.
+ </int>
+ <int value="3" label="DATA_CLEAR_FAILED">
+ Failed to clear data for new profile.
+ </int>
+ <int value="4" label="OPEN_FAILED">Failed to open data store.</int>
+ <int value="5" label="READ_FAILED">Failed to read from data store.</int>
+ <int value="6" label="PARSE_ERROR">Data could not be parsed.</int>
+</enum>
+
<enum name="PluginAvailabilityStatus" type="int">
<int value="0" label="PLUGIN_NOT_REGISTERED"/>
<int value="1" label="PLUGIN_AVAILABLE"/>
« no previous file with comments | « chrome/chrome_tests_unit.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698