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 1832853003: DefaultBrowserWorker now fully supports opening the settings for Win10 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added comment + nits Created 4 years, 8 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 b4a97d28ea3a1b1f991f51dea00060efc082e199..3e694b7566fb77be2ce7f9e2f17c4dbe345cf081 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -7475,6 +7475,26 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="DefaultBrowser.SettingsInteraction.ConcludeReason"
+ enum="SettingsInteractionConcludeReason">
+ <owner>pmonette@chromium.org</owner>
+ <summary>
+ The reason why the default browser settings interaction concluded on Windows
+ 10.
+ </summary>
+</histogram>
+
+<histogram name="DefaultBrowser.SettingsInteraction.RegistryWatcherDuration"
+ units="ms">
+ <owner>pmonette@chromium.org</owner>
+ <summary>
+ The registry keys for the default browser protocols (http/https) are
+ monitored to know when the user finished interacting with the system
+ settings. This is how long it took for the last registry watcher to get
+ signaled.
+ </summary>
+</histogram>
+
<histogram name="DefaultBrowser.State" enum="DefaultBrowserState">
<owner>gab@chromium.org</owner>
<summary>Whether Chrome was the default browser when it started up.</summary>
@@ -80851,6 +80871,15 @@ To add a new entry, add it with any value and run test to compute valid value.
</int>
</enum>
+<enum name="SettingsInteractionConcludeReason" type="int">
+ <int value="0" label="Registry watcher">
+ A change to the protocol registry key was detected.
+ </int>
+ <int value="1" label="Timeout">
+ The timer fired before a change to the protocol registry key was detected.
+ </int>
+</enum>
+
<enum name="SettingsSections" type="int">
<summary>
A collection of sections from chrome://settings. Used for metrics about
« chrome/browser/shell_integration_win.cc ('K') | « chrome/browser/shell_integration_win.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698