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

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

Issue 2709903002: Add metric for tracking media playback utilization. (Closed)
Patch Set: Use custom boolean for metric. Created 3 years, 10 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 | « content/browser/media/media_internals.cc ('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 86869a435ce1fb5ee9a688b389ca56f5a3779b27..efc195e94dbcc24883314fb2cf2e2273e8963275 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -25832,6 +25832,14 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="Media.HasEverPlayed" enum="BooleanHasPlayed">
+ <owner>dalecurtis@chromium.org</owner>
+ <summary>
+ Whether a given WebMediaPlayer instance, after preload, started playback;
+ recorded once at time of player destruction.
+ </summary>
+</histogram>
+
<histogram name="Media.HighLatencyAudioCaptureStartupSuccess"
enum="AudioCaptureStartupResult">
<owner>maxmorin@chromium.org</owner>
@@ -80925,6 +80933,11 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
<int value="1" label="Has path"/>
</enum>
+<enum name="BooleanHasPlayed" type="int">
+ <int value="0" label="Never played"/>
+ <int value="1" label="Played"/>
+</enum>
+
<enum name="BooleanHasSeekPenalty" type="int">
<int value="0" label="Has no seek penalty (e.g. is flash memory)"/>
<int value="1" label="Has seek penalty (e.g. spinning disk)"/>
« no previous file with comments | « content/browser/media/media_internals.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698