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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 1537743006: Persist setup metrics and have Chrome report them during UMA upload. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@shared-histograms
Patch Set: addressed final review comments by Alexei 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 | « components/metrics/metrics_service.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 9ddd445781e309fb5e954084aa5bfc05f310659d..76be5a132a8901d453750e09de82e7b547fb0978 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -52405,6 +52405,15 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="UMA.FileMetricsProvider.AccessResult"
+ enum="FileMetricsProviderAccessResult">
+ <owner>asvitkine@chromium.org</owner>
+ <owner>bcwhite@chromium.org</owner>
+ <summary>
+ Records attempts to access a file for the purpose of extracting metrics.
+ </summary>
+</histogram>
+
<histogram name="UMA.GeneratedLowEntropySource" enum="Boolean">
<obsolete>
Deprecated as of August 2015. No longer tracked.
@@ -67629,6 +67638,15 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
<int value="5" label="MTP (Media Transfer Protocol) Device"/>
</enum>
+<enum name="FileMetricsProviderAccessResult" type="int">
+ <int value="0" label="File was mapped."/>
+ <int value="1" label="File doesn't exist."/>
+ <int value="2" label="File not modified."/>
+ <int value="3" label="File is invalid (e.g. directory or zero-size)."/>
+ <int value="4" label="File could not be memory-mapped by system."/>
+ <int value="5" label="File has invalid contents."/>
+</enum>
+
<enum name="FileSystemDatabaseInitResult" type="int">
<int value="0" label="OK"/>
<int value="1" label="Corruption"/>
« no previous file with comments | « components/metrics/metrics_service.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698