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

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

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: Move media_router_metrics_unittest to non_android 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
« no previous file with comments | « chrome/chrome_tests_unit.gypi ('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 7e1f83d44aa860cd1406256479f13b77e66f5e1e..9b048f48197ce1e8fc17aeec240a2776e7a60577 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -21076,6 +21076,14 @@ 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 how the major version of the Media Router component extension
+ compares to the major version of the browser.
+ </summary>
+</histogram>
+
<histogram name="MediaRouter.Provider.WakeReason"
enum="MediaRouteProviderWakeReason">
<owner>mfoltz@chromium.org</owner>
@@ -21084,6 +21092,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>
@@ -74544,6 +74559,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="SameVersionAsChrome"/>
+ <int value="2" label="OneVersionBehindChrome"/>
+ <int value="3" label="MultipleVersionsBehindChrome"/>
+</enum>
+
<enum name="MediaRouteProviderWakeReason" type="int">
<int value="0" label="CreateRoute"/>
<int value="1" label="JoinRoute"/>
@@ -74562,6 +74584,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"/>
« no previous file with comments | « chrome/chrome_tests_unit.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698