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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 2711803006: Merge M57: "Add metric for tracking media playback utilization." (Closed)
Patch Set: Created 3 years, 9 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 636cd362fdba7396bc5e604aa5760059ec6dc36a..003558515c52bd194adfdcc9977c1d61db5a412f 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -25568,6 +25568,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.InfoLoadDelay" units="ms">
<owner>qinmin@chromium.org</owner>
<summary>
@@ -79650,6 +79658,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