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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 2634403002: Use GetDeterministicMachineSpecificId instead of RLZ for device_id (Closed)
Patch Set: Add some saftey checks and a histogram for the device_id generation Created 3 years, 11 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
Index: tools/metrics/histograms/histograms.xml
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml
index 6b52fd6c5aee75318a5bfc2e62dd574b23156816..e8dd66e6b05b0f8bd97aba180cee310a8610367f 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -60644,6 +60644,14 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="Settings.MachineIdGenerationStatus" enum="MachineIdStatus">
+ <owner>proberge@chromium.org</owner>
+ <summary>
+ The result of deterministic machine-specific device id generation when
+ initializing the PrefHashStore.
+ </summary>
+</histogram>
+
<histogram name="Settings.MigratedHashesFromLocalState" enum="BooleanMigrated">
<obsolete>
Deprecated in Chrome 54, as we stopped legacy migration of preferences.
@@ -95560,6 +95568,12 @@ value.
<int value="22" label="MacBookPro5,X"/>
</enum>
+<enum name="MachineIdStatus" type="int">
+ <int value="0" label="Success"/>
+ <int value="1" label="Failure"/>
+ <int value="2" label="Not Implemented"/>
+</enum>
+
<enum name="MainFrameStorable" type="int">
<int value="0" label="Storable"/>
<int value="1" label="cache-control: no-store"/>

Powered by Google App Engine
This is Rietveld 408576698