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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 133923002: Use a Finch Experiment to control the Browser Blacklist (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fix unittests Created 6 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
« no previous file with comments | « chrome_elf/chrome_elf_main.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 36d7b0c19404bf164b796322ccfdd9cdfe492275..1825df4fe27a7e7991c9e272eba0382b95e44f70 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -1268,6 +1268,15 @@ other types of suffix sets.
</summary>
</histogram>
+<histogram name="Blacklist.Setup" enum="BlacklistSetup">
+ <summary>
+ Records the successes and failures when running the browser blacklist setup
+ code. Used to determine if the blacklist is working as intended during
+ startup(since the blacklist runs before crash reporting is set up). This
+ only occurs on Windows.
+ </summary>
+</histogram>
+
<histogram name="Bluetooth.ConnectedDeviceCount" units="devices">
<summary>
Counts the number of simulataneously connected Bluetooth devices. Used to
@@ -22187,6 +22196,12 @@ other types of suffix sets.
<int value="2" label="Bad"/>
</enum>
+<enum name="BlacklistSetup" type="int">
+ <int value="0" label="Blacklist enabled"/>
+ <int value="1" label="Blacklist ran successfully."/>
+ <int value="2" label="Blacklist failed."/>
+</enum>
+
<enum name="BluetoothPairingMethod" type="int">
<int value="0" label="No user interaction required"/>
<int value="1" label="PIN Code requested from user"/>
« no previous file with comments | « chrome_elf/chrome_elf_main.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698