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

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
Index: tools/metrics/histograms/histograms.xml
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml
index ff0d5af297abfe9c5029141566cec2675f134cfb..e8cb47518bdffd7d3e9172ad4387a1dea041e973 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -22041,6 +22041,12 @@ Therefore, the affected-histogram name has to have at least one dot in it.
<summary>The result from an attempt to load a PPAPI plugin.</summary>
</histogram>
+<histogram name="Plugin.RegistrationStatus.WidevineCdm"
+ enum="PluginRegistrationStatus">
+ <owner>xhwang@chromium.org</owner>
+ <summary>The registration status of Widevine CDM.</summary>
Ilya Sherman 2014/07/19 01:18:38 Please document when this metric is recorded.
+</histogram>
+
<histogram name="Power.BacklightLevelOnAC" units="%">
<owner>Please list the metric's owners. Add more owner tags as needed.</owner>
<summary>
@@ -44501,6 +44507,12 @@ Therefore, the affected-histogram name has to have at least one dot in it.
<int value="4" label="FILE_MISSING"/>
</enum>
+<enum name="PluginRegistrationStatus" type="int">
+ <int value="0" label="PLUGIN_REGISTERED"/>
+ <int value="1" label="PLUGIN_NOT_REGISTERED"/>
+ <int value="2" label="PLUGIN_DISABLED"/>
+</enum>
+
<enum name="PNaClOptionsOptLevelEnum" type="int">
<int value="0" label="0"/>
<int value="1" label="1"/>

Powered by Google App Engine
This is Rietveld 408576698