Chromium Code Reviews| Index: tools/metrics/histograms/histograms.xml |
| diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml |
| index 96a571ee1b69bd6287b396cdd7b79b8fc4abaef4..cfacfe61504706a562db88383f654e9320f5c2a3 100644 |
| --- a/tools/metrics/histograms/histograms.xml |
| +++ b/tools/metrics/histograms/histograms.xml |
| @@ -34742,6 +34742,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. |
|
Alexei Svitkine (slow)
2014/09/11 15:23:28
Please mention when this is logged.
|
| + </summary> |
| +</histogram> |
| + |
| <histogram name="UMA.ClientIdBackupRecoveredWithAge" units="hours"> |
| <owner>gab@chromium.org</owner> |
| <summary> |
| @@ -51130,6 +51138,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"/> |