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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 505233002: Add UMA to study the video types for mobile (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addressing comments Created 6 years, 3 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
Index: tools/metrics/histograms/histograms.xml
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml
index 9557f88eda48c9b0501c73e3e7069a7b0f223e62..a1c5ad944db9e73ce2151acdeca7309ffa7d846e 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -11310,6 +11310,21 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</summary>
</histogram>
+<histogram name="Media.Mobile.IsHttpLiveStreamingMedia" enum="MediaUrlType">
+ <owner>qinmin@chromium.org</owner>
+ <summary>
+ Android: Records whether a regular media url is HLS (http live streaming)
+ media or not.
+ </summary>
+</histogram>
+
+<histogram name="Media.Mobile.MediaType" enum="MediaType">
+ <owner>qinmin@chromium.org</owner>
+ <summary>
+ Android: Records the type of the media content when it loads.
+ </summary>
+</histogram>
+
<histogram name="Media.MSE.AudioCodec" enum="MSECodec">
<owner>acolwell@chromium.org</owner>
<summary>
@@ -44941,6 +44956,16 @@ To add a new entry, add it with any value and run test to compute valid value.
<int value="2" label="Pending Media Tracks"/>
</enum>
+<enum name="MediaType" type="int">
+ <int value="0" label="MediaSourceType"/>
+ <int value="1" label="UrlType"/>
+</enum>
+
+<enum name="MediaUrlType" type="int">
+ <int value="0" label="File Type"/>
Ilya Sherman 2014/08/27 22:14:37 Are you sure that non-HLS videos will always be of
qinmin 2014/08/28 00:30:09 Done.
+ <int value="1" label="Http Live Stream Type"/>
+</enum>
+
<enum name="MetaTagTypeEnum" type="int">
<int value="0" label="No viewport tag"/>
<int value="1" label="Viewport meta with device width"/>

Powered by Google App Engine
This is Rietveld 408576698