Chromium Code Reviews| 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"/> |