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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 1765143002: [Media Router] Add UMA histograms tracking component extension version/wakeups (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Cleanups Created 4 years, 9 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 7e192cd330d9d663076bfe46fce6c5dd138f8b5b..9d39ae46a8656de6648cb1bce0aaf47a46c3eb23 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -20893,6 +20893,13 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
<summary>Location the user clicked to open the Media Router dialog.</summary>
</histogram>
+<histogram name="MediaRouter.Provider.Version" enum="MediaRouteProviderVersion">
+ <owner>mfoltz@chromium.org</owner>
+ <summary>
+ Records the version of the Media Router component extension.
+ </summary>
+</histogram>
+
<histogram name="MediaRouter.Provider.WakeReason"
enum="MediaRouteProviderWakeReason">
<owner>mfoltz@chromium.org</owner>
@@ -20901,6 +20908,13 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="MediaRouter.Provider.Wakeup" enum="MediaRouteProviderWakeup">
+ <owner>mfoltz@chromium.org</owner>
+ <summary>
+ Records the outcome of waking the Media Router component's event page.
+ </summary>
+</histogram>
+
<histogram name="MediaRouter.Route.CreationOutcome"
units="MediaRouterCreateRouteOutcome">
<owner>apacible@chromium.org</owner>
@@ -73975,6 +73989,13 @@ To add a new entry, add it with any value and run test to compute valid value.
<int value="1" label="Has errors"/>
</enum>
+<enum name="MediaRouteProviderVersion" type="int">
+ <int value="0" label="Unknown"/>
+ <int value="1" label="SameVersion"/>
+ <int value="2" label="PreviousVersion"/>
+ <int value="3" label="OutOfDateVersion"/>
Ilya Sherman 2016/03/16 22:23:05 It's not really clear to me what these labels mean
+</enum>
+
<enum name="MediaRouteProviderWakeReason" type="int">
<int value="0" label="CreateRoute"/>
<int value="1" label="JoinRoute"/>
@@ -73993,6 +74014,12 @@ To add a new entry, add it with any value and run test to compute valid value.
<int value="14" label="ConnectRouteByRouteId"/>
</enum>
+<enum name="MediaRouteProviderWakeup" type="int">
+ <int value="0" label="Success"/>
+ <int value="1" label="ErrorUnknown"/>
+ <int value="2" label="ErrorTooManyRetries"/>
+</enum>
+
<enum name="MediaRouterCreateRouteOutcome" type="int">
<int value="0" label="Success"/>
<int value="1" label="Failure No Route"/>
« chrome/browser/media/router/media_router_metrics.cc ('K') | « chrome/chrome_tests_unit.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698