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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 399063004: Check whether the plugin is disabled in OnIsInternalPluginRegisteredForMimeType(). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: comments addressed Created 6 years, 5 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 | « chrome/renderer/media/chrome_key_systems.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 ff0d5af297abfe9c5029141566cec2675f134cfb..29a93c7c3dc05666021b41b2a391ec1c9d0c7c15 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -22016,6 +22016,17 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</summary>
</histogram>
+<histogram name="Plugin.AvailabilityStatus.WidevineCdm"
+ enum="PluginAvailabilityStatus">
+ <owner>xhwang@chromium.org</owner>
+ <summary>
+ The availability status of Widevine CDM. In normal cases, this is reported
+ per render process if EME API is used. This is not reported if EME API is
+ not used. This could be reported multiple times per render process until
+ PLUGIN_AVAILABLE is reported (which should be a rare case).
+ </summary>
+</histogram>
+
<histogram name="Plugin.FlashNavigateUsage" enum="FlashNavigateUsageType">
<owner>Please list the metric's owners. Add more owner tags as needed.</owner>
<summary>Record usage of PPB_Flash.Navigate() Pepper API.</summary>
@@ -44493,6 +44504,12 @@ Therefore, the affected-histogram name has to have at least one dot in it.
<int value="16" label="I/O"/>
</enum>
+<enum name="PluginAvailabilityStatus" type="int">
+ <int value="0" label="PLUGIN_NOT_REGISTERED"/>
+ <int value="1" label="PLUGIN_AVAILABLE"/>
+ <int value="2" label="PLUGIN_DISABLED"/>
+</enum>
+
<enum name="PluginLoadResult" type="int">
<int value="0" label="LOAD_SUCCESS"/>
<int value="1" label="LOAD_FAILED"/>
« no previous file with comments | « chrome/renderer/media/chrome_key_systems.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698