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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 55193003: Add UMAs for video casting (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added enums to histograms.xml Created 7 years, 1 month 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 | « tools/metrics/actions/extract_actions.py ('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 85787bf4a2f36ad8a1f6fae45961c9ed54f53c96..b715b431efe358566fd1a1ef68acf09f721e3585 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -1203,6 +1203,43 @@ other types of suffix sets.
</summary>
</histogram>
+<histogram name="Cast.Sender.CastButtonShown" enum="BooleanEnabled">
+ <summary>
+ Records the number of times the cast button was shown to the user. The value
+ will be true if the button is enabled, and false if the button is disabled.
+ Note that depending on the current UX, it's possible that we hide the button
+ entirely if it's disabled, so it's possible for the false values to be 0.
+ </summary>
+</histogram>
+
+<histogram name="Cast.Sender.CastButtonShownInitialFullscreen"
+ enum="BooleanEnabled">
+ <summary>
+ Records the number of times the cast button was shown to the user when the
+ video is fullscreened. The value will only be recorded once per fullscreen/
+ exit fullscreen session. The value will be true if the button is enabled,
Mark P 2013/11/04 18:30:15 In this case, perhaps you want to change: The valu
May 2013/11/04 19:04:03 Done.
+ and false if the button is disabled. Note that depending on the current UX,
+ it's possible that we hide the button entirely if it's disabled, so it's
+ possible for the false values to be 0.
+ </summary>
+</histogram>
+
+<histogram name="Cast.Sender.CastPlaySuccess" enum="BooleanSuccess">
+ <summary>
+ Records the result of a request to play remotely. The value will be true if
+ the playback succeeded, and false if there was an error.
+ </summary>
+</histogram>
+
+<histogram name="Cast.Sender.CastTimeRemainingPercentage"
+ units="percent remaining">
+ <summary>
+ Records the percentage of the video left at the time the remote playback is
+ stopped. This will be recorded when the playback is stopped by the user, or
+ when it's stopped by the cast device.
+ </summary>
+</histogram>
+
<histogram name="Cellular.ActivationFailure">
<summary>
The count of cellular device activation failures (Chrome OS).
« no previous file with comments | « tools/metrics/actions/extract_actions.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698