| Index: tools/metrics/histograms/histograms.xml
|
| diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml
|
| index 2be9b0fa77878df0812d431ec613e54fa50c3f09..b68d32871433349660ac1bb4b8207b6fc8ed0ff1 100644
|
| --- a/tools/metrics/histograms/histograms.xml
|
| +++ b/tools/metrics/histograms/histograms.xml
|
| @@ -25072,6 +25072,26 @@ 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"
|
| + enum="PluginPowerSaverPeripheralHeuristicDecision">
|
| + <owner>tommycli@chromium.org</owner>
|
| + <summary>
|
| + Record the initial decision of the Plugin Power Saver peripheral content
|
| + heuristic. For each plugin instance, this heuristic decides whether the
|
| + plugin instance is essential content or peripheral. All same-origin content
|
| + is essential. Cross-origin content is peripheral if it is small and not on
|
| + the origin whitelist.
|
| + </summary>
|
| +</histogram>
|
| +
|
| +<histogram name="Plugin.PowerSaverUnthrottle"
|
| + enum="PluginPowerSaverUnthrottleMethod">
|
| + <owner>tommycli@chromium.org</owner>
|
| + <summary>
|
| + Record how many throttled plugins are unthrottled, and by what method.
|
| + </summary>
|
| +</histogram>
|
| +
|
| <histogram name="Plugin.PpapiBrokerLoadErrorCode" units="code">
|
| <owner>xhwang@chromium.org</owner>
|
| <summary>The error code of a PPAPI broker load failure.</summary>
|
| @@ -51236,6 +51256,19 @@ To add a new entry, add it with any value and run test to compute valid value.
|
| <int value="4" label="FILE_MISSING"/>
|
| </enum>
|
|
|
| +<enum name="PluginPowerSaverPeripheralHeuristicDecision" type="int">
|
| + <int value="0" label="Peripheral"/>
|
| + <int value="1" label="Essential Same-Origin"/>
|
| + <int value="2" label="Essential Cross-Origin Big"/>
|
| + <int value="3" label="Essential Cross-Origin Whitelisted"/>
|
| +</enum>
|
| +
|
| +<enum name="PluginPowerSaverUnthrottleMethod" type="int">
|
| + <int value="0" label="Never Unthrottled"/>
|
| + <int value="1" label="Unthrottled by Click"/>
|
| + <int value="2" label="Unthrottled by Retroactive Whitelist"/>
|
| +</enum>
|
| +
|
| <enum name="PNaClOptionsOptLevelEnum" type="int">
|
| <int value="0" label="0"/>
|
| <int value="1" label="1"/>
|
|
|