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

Issue 806163003: Adds histograms for casting feature of Video Player Base URL: https://chromium.googlesource.com/chromium/src.git@2214
Patch Set: Created 6 years 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/actions.xml ('k') | ui/file_manager/file_manager/foreground/js/metrics_base.js » ('j') | 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 e077c0a5dd20c24cbd88dfe04717a8e9347d9c9c..4a101e95232a82b8d8881d4c484379cb9948c43e 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -38741,6 +38741,45 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</summary>
</histogram>
+<histogram name="VideoPlayer.CastAPIExtensionStatus"
+ enum="VideoPlayerCastAPIExtensionStatus">
+ <owner>yoshiki@chromium.org</owner>
+ <summary>
+ Chrome OS Video Player: the results of the cast API extension load. This is
+ recorded after the initialization of the extension is finished.
+ </summary>
+</histogram>
+
+<histogram name="VideoPlayer.CastedVideoLength" units="seconds">
+ <owner>yoshiki@chromium.org</owner>
+ <summary>
+ Chrome OS Video Player: the length of casted video (in seconds).
+ </summary>
+</histogram>
+
+<histogram name="VideoPlayer.NumberOfCastDevices">
+ <owner>yoshiki@chromium.org</owner>
+ <summary>
+ Chrome OS Video Player: the number of cast devices. This is recorded when
+ the cast extension finishes the discovery.
+ </summary>
+</histogram>
+
+<histogram name="VideoPlayer.NumberOfOpenedFiles">
+ <owner>yoshiki@chromium.org</owner>
+ <summary>
+ Chrome OS Video Player: the number of files being opened on launch.
+ </summary>
+</histogram>
+
+<histogram name="VideoPlayer.PlayType" enum="VideoPlayerPlayType">
+ <owner>yoshiki@chromium.org</owner>
+ <summary>
+ Chrome OS Video Player: type of playback (eg. local play, cast). This is
+ recorded when a video starts playing.
+ </summary>
+</histogram>
+
<histogram name="Viewport.MetaTagType" enum="MetaTagTypeEnum">
<owner>bokan@chromium.org</owner>
<summary>
@@ -55586,6 +55625,19 @@ To add a new entry, add it with any value and run test to compute valid value.
<int value="7" label="YV12J"/>
</enum>
+<enum name="VideoPlayerCastAPIExtensionStatus" type="int">
+ <int value="0" label="Skipped (Cast extension is unavailable)"/>
+ <int value="1" label="Installation failed"/>
+ <int value="2" label="Load failed"/>
+ <int value="3" label="Loaded successfully (newly installed)"/>
+ <int value="4" label="Loaded successfully (already installed)"/>
+</enum>
+
+<enum name="VideoPlayerPlayType" type="int">
+ <int value="0" label="Local playback"/>
+ <int value="1" label="Play on cast device"/>
+</enum>
+
<enum name="VideoRotation" type="int">
<int value="0" label="VIDEO_ROTATION_0"/>
<int value="1" label="VIDEO_ROTATION_90"/>
« no previous file with comments | « tools/metrics/actions/actions.xml ('k') | ui/file_manager/file_manager/foreground/js/metrics_base.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698