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

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

Issue 690483003: Log major user interactions with the WebsiteSettings (origin info) bubble. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix indentation in switch clause. Created 6 years, 2 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
« no previous file with comments | « tools/metrics/actions/actions.xml ('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 bd22aac88e5b2fbbc934993ab23c3f30713dbff3..ccad3f1714491074278f4bce7a516919973547b5 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -39034,6 +39034,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.Action" 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.Action.HttpsUrl" 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>
@@ -54069,6 +54085,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"/>
+ <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"/>
« no previous file with comments | « tools/metrics/actions/actions.xml ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698