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

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

Issue 1058003004: Forget SSL error exceptions when good certs seen for regular requests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: Yet Another Webview Fix (should be the last, I swear) Created 5 years, 8 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 | « net/test/spawned_test_server/base_test_server.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 bf9b141b84cfa674500af653db025e38db69f851..c51cdbedf160c277403bd068f54e36a2e0aeaf97 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -13087,6 +13087,14 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</summary>
</histogram>
+<histogram name="interstitial.ssl.good_cert_seen" enum="SSLGoodCertSeenEvent">
+ <owner>jww@chromium.org</owner>
+ <summary>
+ Emitted when a good certificate is seen, specifying whether the user already
+ gave an exception for a bad certificate for the same host.
+ </summary>
+</histogram>
+
<histogram name="interstitial.ssl.severity_score.authority_invalid" units="%">
<obsolete>
Deprecated Jan 2015 (M42).
@@ -62336,6 +62344,11 @@ To add a new entry, add it with any value and run test to compute valid value.
<int value="9" label="UNKNOWN"/>
</enum>
+<enum name="SSLGoodCertSeenEvent" type="int">
+ <int value="0" label="NO_PREVIOUS_EXCEPTION"/>
+ <int value="1" label="HAD_PREVIOUS_EXCEPTION"/>
+</enum>
+
<enum name="SSLIsExpiredAndDecision" type="int">
<int value="0" label="EXPIRED_AND_PROCEED"/>
<int value="1" label="EXPIRED_AND_DO_NOT_PROCEED"/>
« no previous file with comments | « net/test/spawned_test_server/base_test_server.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698