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

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

Issue 13548005: Add UMA reporting on failure to load ppapi plugins. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: ppapi -> PPAPI Created 7 years, 8 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:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/ppapi_plugin/ppapi_thread.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 56bae39d1dc22d7bd876aed88d1b05e7a0845f9c..8b0234a5500612cdd98dd3be6d4df25b9314ee46 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -2531,6 +2531,14 @@ other types of suffix sets.
</summary>
</histogram>
+<histogram name="Plugin.PpapiBrokerLoadResult" enum="PluginLoadResult">
+ <summary>The result from an attempt to load a PPAPI broker.</summary>
+</histogram>
+
+<histogram name="Plugin.PpapiPluginLoadResult" enum="PluginLoadResult">
+ <summary>The result from an attempt to load a PPAPI plugin.</summary>
+</histogram>
+
<histogram name="Prerender.FinalStatus" enum="PrerenderFinalStatus">
<summary>
Final status for prerender pages - either success, or why it was canceled.
@@ -4725,6 +4733,13 @@ other types of suffix sets.
<int value="15" label="INVALID_URL"/>
</enum>
+<enum name="PluginLoadResult" type="int">
+ <int value="0" label="LOAD_SUCCESS"/>
+ <int value="1" label="LOAD_FAILED"/>
+ <int value="2" label="ENTRY_POINT_MISSING"/>
+ <int value="3" label="INIT_FAILED"/>
+</enum>
+
<enum name="PreconnectMotivation" type="int">
<int value="0" label="MOUSE_OVER_MOTIVATED"/>
<int value="1" label="PAGE_SCAN_MOTIVATED"/>
@@ -5236,6 +5251,17 @@ other types of suffix sets.
<affected-histogram name="Renderer4.BeginToFinishDoc"/>
</fieldtrial>
+<fieldtrial name="PpapiPluginName">
jar (doing other things) 2013/04/16 18:07:45 One subtle point: I think you append the group nam
xhwang 2013/04/16 19:02:21 I didn't know about "separator" so I updated my so
jar (doing other things) 2013/04/16 21:12:33 hmm... I think it must still reside in the interna
Ilya Sherman 2013/04/16 21:58:04 update_descriptions.py needs to combine data from
+ <group name="libpepflashplayer.so" label="Flash player on Linux or Cros"/>
+ <group name="libwidevinecdmadapter.so" label="Widevine CDM on Linux or Cros"/>
+ <group name="pepflashplayer.dll" label="Flash player on Windows"/>
+ <group name="PepperFlashPlayer.plugin" label="Flash player on Mac"/>
jar (doing other things) 2013/04/16 18:07:45 This is much nicer! thanks!
xhwang 2013/04/16 19:02:21 Thank you for the tip!
+ <group name="widevinecdmadapter.dll" label="Widevine CDM on Windows"/>
+ <group name="widevinecdmadapter.plugin" label="Widevine CDM on Mac"/>
+ <affected-histogram name="Plugin.PpapiBrokerLoadResult"/>
+ <affected-histogram name="Plugin.PpapiPluginLoadResult"/>
+</fieldtrial>
+
<fieldtrial name="Prefetch">
<group name="ContentPrefetchPrefetchOff"
label="Prefetch is completely disabled."/>
« no previous file with comments | « content/ppapi_plugin/ppapi_thread.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698