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

Unified Diff: chrome/common/pref_names.cc

Issue 369703002: Remember user decisions on invalid certificates behind a flag (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixes from felt plus new incognito browser tests Created 6 years, 5 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:
View side-by-side diff with in-line comments
Download patch
Index: chrome/common/pref_names.cc
diff --git a/chrome/common/pref_names.cc b/chrome/common/pref_names.cc
index cdfe00384056b97dc14f989714eaa8cacc54cda8..030886963d05c34026c481db919f9799b0be6729 100644
--- a/chrome/common/pref_names.cc
+++ b/chrome/common/pref_names.cc
@@ -1261,6 +1261,10 @@ const char kSSLVersionMax[] = "ssl.version_max";
const char kCipherSuiteBlacklist[] = "ssl.cipher_suites.blacklist";
const char kDisableSSLRecordSplitting[] = "ssl.ssl_record_splitting.disabled";
+// Dictionary of dates when a site's SSL blocking interstitial was proceeded
+// through.
+const char kSSLBlockingBypassed[] = "ssl.ssl_blocking_bypassed";
Ryan Sleevi 2014/07/08 23:53:29 Does seem wrong to store this in prefs, potentiall
jww 2014/07/11 00:08:41 This was the model suggested by jschuh since it is
Ryan Sleevi 2014/07/11 00:48:49 What do we do for content settings today - like wh
jww 2014/07/11 01:52:07 These are all stored in preferences. For example,
+
// A boolean pref of the EULA accepted flag.
const char kEulaAccepted[] = "EulaAccepted";

Powered by Google App Engine
This is Rietveld 408576698