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 720843005: Plugin Power Saver: Collect size histogram on Flash Plugins users click. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2214
Patch Set: Created 6 years, 1 month 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 | « content/renderer/pepper/plugin_power_saver_helper.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 e077c0a5dd20c24cbd88dfe04717a8e9347d9c9c..e9dfa0763ac2cf9167cf86b271ac8505c67baf7a 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -25112,6 +25112,32 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</summary>
</histogram>
+<histogram name="Plugin.Flash.ClickSize.AspectRatio">
+ <owner>tommycli@chromium.org</owner>
+ <summary>
+ Aspect ratio of Flash plugins users click at least once. The aspect ratio is
+ multiplied by 100 and stored as a rounded integer.
+ </summary>
+</histogram>
+
+<histogram name="Plugin.Flash.ClickSize.Height" units="pixels">
+ <owner>tommycli@chromium.org</owner>
+ <summary>Height of Flash plugins users click at least once.</summary>
+</histogram>
+
+<histogram name="Plugin.Flash.ClickSize.Width" units="pixels">
+ <owner>tommycli@chromium.org</owner>
+ <summary>Width of Flash plugins users click at least once.</summary>
+</histogram>
+
+<histogram name="Plugin.Flash.TinyContentSize" enum="FlashTinyContentSize">
+ <owner>tommycli@chromium.org</owner>
+ <summary>
+ Collects the sizes of all loaded Flash plugin instances. This is for
+ determining the prevalence of tiny flash plugin instances.
+ </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>
@@ -25123,7 +25149,7 @@ Therefore, the affected-histogram name has to have at least one dot in it.
<summary>Collects Flash usage data.</summary>
</histogram>
-<histogram name="Plugin.PowerSaverPeripheralHeuristic"
+<histogram name="Plugin.PowerSaver.PeripheralHeuristic"
enum="PluginPowerSaverPeripheralHeuristicDecision">
<owner>tommycli@chromium.org</owner>
<summary>
@@ -25135,7 +25161,7 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</summary>
</histogram>
-<histogram name="Plugin.PowerSaverUnthrottle"
+<histogram name="Plugin.PowerSaver.Unthrottle"
enum="PluginPowerSaverUnthrottleMethod">
<owner>tommycli@chromium.org</owner>
<summary>
@@ -45907,6 +45933,13 @@ Therefore, the affected-histogram name has to have at least one dot in it.
<int value="15" label="The total number of navigate requests."/>
</enum>
+<enum name="FlashTinyContentSize" type="int">
+ <int value="0" label="1x1 or smaller"/>
+ <int value="1" label="5x5 or smaller"/>
+ <int value="2" label="10x10 or smaller"/>
+ <int value="3" label="Large"/>
+</enum>
+
<enum name="FlashUsage" type="int">
<int value="0" label="Started NPAPI Flash at least once">
Number of browser processes that have started at least one NPAPI Flash
« no previous file with comments | « content/renderer/pepper/plugin_power_saver_helper.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698