Chromium Code Reviews| Index: tools/metrics/histograms/histograms.xml |
| diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml |
| index ffc09e3accfa81de63a9ad18d073ab000415ab35..1ec97c19caef820c2580b8b6aab989f85175909b 100644 |
| --- a/tools/metrics/histograms/histograms.xml |
| +++ b/tools/metrics/histograms/histograms.xml |
| @@ -67445,6 +67445,15 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. |
| </summary> |
| </histogram> |
| +<histogram name="Sync.ModelTypeStoreInitResult" |
| + enum="SyncModelTypeStoreInitResult"> |
| + <owner>pavely@chromium.org</owner> |
| + <summary> |
| + Records the result of ModelTypeStoreBackend initialization. Used to analyze |
| + frequency and causes of backend initialization failures. |
| + </summary> |
| +</histogram> |
| + |
| <histogram name="Sync.NigoriMigrationState" enum="SyncNigoriMigrationState"> |
| <owner>zea@chromium.org</owner> |
| <summary>Breakdown of sync's nigori node keystore migration state.</summary> |
| @@ -107593,6 +107602,18 @@ value. |
| <int value="38" label="Reading List"/> |
| </enum> |
| +<enum name="SyncModelTypeStoreInitResult" type="int"> |
| + <int value="0" label="Success"/> |
| + <int value="1" label="Not Found"/> |
| + <int value="2" label="Corruption"/> |
| + <int value="3" label="Not Supported"/> |
| + <int value="4" label="Invalid Argument"/> |
| + <int value="5" label="IO Error"/> |
| + <int value="6" label="Reading'parsing schema descriptor failed"/> |
|
maxbogue
2017/01/31 01:22:14
Maybe just have this be "Schema descriptor issue"
pavely
2017/01/31 02:22:25
Done.
|
| + <int value="7" label="Migration failed"/> |
|
maxbogue
2017/01/31 01:22:14
Here and below you switch to having the second wor
pavely
2017/01/31 02:22:25
Done.
|
| + <int value="8" label="Unknown error"/> |
| +</enum> |
| + |
| <enum name="SyncNigoriMigrationResult" type="int"> |
| <int value="0" label="Failed to set default encryption key"/> |
| <int value="1" label="Failed to set nondefault encryption key"/> |