Chromium Code Reviews| Index: tools/metrics/histograms/histograms.xml |
| diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml |
| index 8e77773899ccf63bfd8f40942c601467ad2ea673..d6ff2c69950edf06f03d16b7cdd00ba2ff2a5589 100644 |
| --- a/tools/metrics/histograms/histograms.xml |
| +++ b/tools/metrics/histograms/histograms.xml |
| @@ -38958,6 +38958,22 @@ Therefore, the affected-histogram name has to have at least one dot in it. |
| <summary>Time for capturing one frame in window capturing.</summary> |
| </histogram> |
| +<histogram name="WebsiteSettings" enum="WebsiteSettingsAction"> |
| + <owner>lgarron@chromium.org</owner> |
| + <summary> |
| + Tracks actions with the website setting (a.k.a. page info / origin info) |
| + bubble, such as opening it up or clicking on the Connection tab. |
| + </summary> |
| +</histogram> |
| + |
| +<histogram name="WebsiteSettings.HTTPS_URL" enum="WebsiteSettingsAction"> |
| + <owner>lgarron@chromium.org</owner> |
| + <summary> |
| + Tracks WebsiteSettings actions that take place on an HTTPS URL. This |
| + completely disregards security status. |
| + </summary> |
| +</histogram> |
| + |
| <histogram name="Webstore.ExtensionInstallResult" enum="BooleanSuccess"> |
| <owner>jackhou@chromium.org</owner> |
| <summary> |
| @@ -53935,6 +53951,18 @@ To add a new entry, add it with any value and run test to compute valid value. |
| <int value="2" label="WEB_HISTORY_QUERY_TIMED_OUT">Timed out</int> |
| </enum> |
| +<enum name="WebsiteSettingsAction" type="int"> |
| + <int value="0" label="Opened"/> |
| + <int value="1" label="Selected Permissions Tab"/> |
|
Ilya Sherman
2014/10/29 23:55:42
nit: "Tab" -> "tab" (throughout)
lgarron
2014/10/30 00:10:19
Sure. But Permissions and Connection stay capitali
Ilya Sherman
2014/10/30 01:32:56
I dunno, I think it comes down to personal prefere
lgarron
2014/10/31 00:50:48
Acknowledged.
|
| + <int value="2" label="Selected Connection Tab"/> |
| + <int value="3" label="Connection Tab shown immediately"/> |
| + <int value="4" label="Cookies dialog opened"/> |
| + <int value="5" label="Changed permission"/> |
| + <int value="6" label="Certificate dialog opened"/> |
| + <int value="7" label="Transparency viewer opened"/> |
| + <int value="8" label="Connection Help opened"/> |
| +</enum> |
| + |
| <enum name="WebSocketHandshakeResult" type="int"> |
| <int value="0" label="Incomplete"/> |
| <int value="1" label="Normal"/> |