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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 2843693002: Add UMA metrics regarding default browser status (Closed)
Patch Set: Added final and comments Created 3 years, 7 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 456f2a74f31cb810d4be4b8eb043c964e295f932..5cc31cb99e2ba501127d2e49f5ed655b7afcaa14 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -30330,6 +30330,29 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="Mobile.DefaultBrowser.BrowserCount.ChromeDefault">
+ <owner>dtrainor@chromium.org</owner>
+ <summary>Android: The number of browsers installed on the device.</summary>
+</histogram>
+
+<histogram name="Mobile.DefaultBrowser.BrowserCount.NoDefault">
+ <owner>dtrainor@chromium.org</owner>
+ <summary>Android: The number of browsers installed on the device.</summary>
+</histogram>
+
+<histogram name="Mobile.DefaultBrowser.BrowserCount.OtherDefault">
+ <owner>dtrainor@chromium.org</owner>
+ <summary>Android: The number of browsers installed on the device.</summary>
+</histogram>
+
+<histogram name="Mobile.DefaultBrowser.State" enum="MobileDefaultBrowserState">
+ <owner>dtrainor@chromium.org</owner>
+ <summary>
+ Android: Whether or not the device has a default browser and whether or
nyquist 2017/04/27 05:20:06 Nit: Is rietveld making fun of me, os is there a t
David Trainor- moved to gerrit 2017/04/28 01:03:18 ... secret.
+ not it is a system installed browser.
+ </summary>
+</histogram>
+
<histogram name="Mobile.SystemNotification.Blocked"
enum="SystemNotificationType">
<owner>dtrainor@chromium.org</owner>
@@ -105679,6 +105702,14 @@ from previous Chrome versions.
<int value="1" label="Failure"/>
</enum>
+<enum name="MobileDefaultBrowserState" type="int">
+ <int value="0" label="No default"/>
+ <int value="1" label="Chrome: System default"/>
+ <int value="2" label="Chrome: Installed default"/>
+ <int value="3" label="Other: System default"/>
+ <int value="4" label="Other: Installed default"/>
+</enum>
+
<enum name="MobileDownloadCancelReason" type="int">
<int value="0" label="Not canceled"/>
<int value="1" label="Click on the cancel button"/>

Powered by Google App Engine
This is Rietveld 408576698