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

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

Issue 2350273002: Add SSLStatus flags to feed HTTP_WARNING security level (Closed)
Patch Set: felt comments Created 4 years, 3 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 | « content/public/browser/ssl_status.h ('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 be722f31d645347ef3d3b9a0f0319d8f2737a2fb..fc34d6574e159e14956e6e3953e96665937143b5 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -58222,8 +58222,23 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="SSL.MarkHttpAsStatus" enum="MarkHttpAsStatus">
+ <owner>estark@chromium.org</owner>
+ <owner>felt@chromium.org</owner>
+ <summary>
+ Reports whether the user has selected to mark HTTP origins with an
+ experimental UI treatment (such as showing a warning on HTTP pages that
+ collect sensitive information). This histogram is recorded whenever the
+ security level (the overall security state of a page, roughly corresponding
+ to the lock icon) is computed for an HTTP page.
+ </summary>
+</histogram>
+
<histogram name="SSL.MarkNonSecureAsStatus" enum="MarkNonSecureAsStatus">
<owner>palmer@chromium.org</owner>
+ <obsolete>
+ Deprecated 09/2016 and replaced with SSL.MarkHttpAsStatus.
+ </obsolete>
<summary>
Reports whether the user has selected to mark non-secure origins as Neutral
(the status quo), Dubious, or Non-Secure.
@@ -88030,6 +88045,12 @@ To add a new entry, add it with any value and run test to compute valid value.
<int value="139" label="AlignCenter"/>
</enum>
+<enum name="MarkHttpAsStatus" type="int">
+ <int value="0" label="Neutral"/>
+ <int value="1" label="Non-Secure"/>
+ <int value="2" label="Neutral with a verbose warning"/>
+</enum>
+
<enum name="MarkNonSecureAsStatus" type="int">
<int value="0" label="Neutral"/>
<int value="1" label="Dubious (deprecated August 2015)"/>
« no previous file with comments | « content/public/browser/ssl_status.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698