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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 881853002: Add UMA to report requests for key systems using RequestMediaKeyAccess (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: GetReporter Created 5 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
Index: tools/metrics/histograms/histograms.xml
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml
index 42fa7dbbc36b9228afefecfae4d8e8af8e9bdac0..f7a9b24956c2848f34ac6f53fdd92016f6b1402f 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -12406,6 +12406,16 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</summary>
</histogram>
+<histogram name="Media.EME.RequestMediaKeySystemAccess"
+ enum="RequestMediaKeySystemAccessStatus">
+ <owner>sandersd@chromium.org</owner>
+ <summary>
+ Key system support query status and result, as reported by
+ RequestMediaKeySystemAccess. Each value will be reported at most once per
+ renderer process.
+ </summary>
+</histogram>
+
<histogram name="Media.EME.Unknown.addKey" enum="MediaKeyException">
<owner>xhwang@chromium.org</owner>
<summary>addKey result using an unknown key system.</summary>
@@ -55424,6 +55434,11 @@ To add a new entry, add it with any value and run test to compute valid value.
</int>
</enum>
+<enum name="RequestMediaKeySystemAccessStatus" type="int">
+ <int value="0" label="Requested"/>
+ <int value="1" label="Supported"/>
+</enum>
+
<enum name="ResolutionCategory" type="int">
<int value="0" label="RESOLVE_SUCCESS"/>
<int value="1" label="RESOLVE_FAIL"/>
@@ -62308,6 +62323,15 @@ To add a new entry, add it with any value and run test to compute valid value.
<affected-histogram name="Event.Latency.RendererImpl"/>
</histogram_suffixes>
+RequestMediaKeySystemAccessStatus
+<histogram_suffixes name="RequestMediaKeySystemAccessKeySystems" separator=".">
+ <suffix name="ClearKey" label="Requests for the Clear Key key system."/>
+ <suffix name="Unknown"
+ label="Requests for an unknown or unsupported key system."/>
+ <suffix name="Widevine" label="Requests for the Widevine key system."/>
+ <affected-histogram name="Media.EME.RequestMediaKeySystemAccess"/>
+</histogram_suffixes>
+
<histogram_suffixes name="ResourcePrefetchPredictorNetworkTypePrefetch"
separator=".">
<suffix name="NotPrefetched"
« media/blink/webencryptedmediaclient_impl.cc ('K') | « media/blink/webencryptedmediaclient_impl.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698