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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 760853003: Adds histograms for casting feature of Video Player (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Move back the place of the recordCastVideoLength (per offline discussion with fukino@) 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
Index: tools/metrics/histograms/histograms.xml
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml
index 17f5530045f5c0f623bb8b8e905de23fa4f197b7..3d135fe4dc9fc3ebfb75eb0f125523a38f4892da 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -39446,6 +39446,41 @@ 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.</summary>
Ilya Sherman 2014/12/10 23:29:28 Please document when this is recorded.
yoshiki 2014/12/11 03:26:40 Done.
+</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).
Ilya Sherman 2014/12/10 23:29:28 Please document when this is recorded.
yoshiki 2014/12/11 03:26:40 Done.
+ </summary>
+</histogram>
+
<histogram name="Viewport.MetaTagType" enum="MetaTagTypeEnum">
<owner>bokan@chromium.org</owner>
<summary>
@@ -57013,6 +57048,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"/>

Powered by Google App Engine
This is Rietveld 408576698