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

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

Issue 558683002: Extract the handling of the clean exit beacon from MetricsService. The extracted implementation sup… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Review comments. Created 6 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 | « components/metrics/metrics_service_client.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 655deb41029c3f895b0740dd1289dc095003db92..27be2383c5765ee93936e347d3e1db2fb421b729 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -34779,6 +34779,14 @@ Therefore, the affected-histogram name has to have at least one dot in it.
<summary>Whether the scroll is executed on main thread.</summary>
</histogram>
+<histogram name="UMA.CleanExitBeaconConsistency" enum="UmaCleanExitConsistency">
+ <owner>erikwright@chromium.org</owner>
+ <summary>
+ Reports the combined state of distinct clean exit beacons stored in Local
+ State and the Windows registry. They are normally expected to be identical.
+ </summary>
+</histogram>
+
<histogram name="UMA.ClientIdBackupRecoveredWithAge" units="hours">
<owner>gab@chromium.org</owner>
<summary>
@@ -51192,6 +51200,15 @@ To add a new entry, add it with any value and run test to compute valid value.
<int value="36" label="Tap unconfirmed"/>
</enum>
+<enum name="UmaCleanExitConsistency" type="int">
+ <int value="0" label="Dirty/Dirty (Registry/Local State)"/>
+ <int value="1" label="Dirty/Clean (Registry/Local State)"/>
+ <int value="2" label="Clean/Dirty (Registry/Local State)"/>
+ <int value="3" label="Clean/Clean (Registry/Local State)"/>
+ <int value="4" label="Missing/Dirty (Registry/Local State)"/>
+ <int value="5" label="Missing/Clean (Registry/Local State)"/>
+</enum>
+
<enum name="UmaInitSequence" type="int">
<int value="0" label="Timer fired first"/>
<int value="1" label="Init task completed first"/>
« no previous file with comments | « components/metrics/metrics_service_client.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698