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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/common/pref_names.h" 5 #include "chrome/common/pref_names.h"
6 6
7 #include "base/basictypes.h" 7 #include "base/basictypes.h"
8 #include "chrome/common/pref_font_webkit_names.h" 8 #include "chrome/common/pref_font_webkit_names.h"
9 9
10 namespace prefs { 10 namespace prefs {
(...skipping 1243 matching lines...) Expand 10 before | Expand all | Expand 10 after
1254 1254
1255 // Prefs for SSLConfigServicePref. 1255 // Prefs for SSLConfigServicePref.
1256 const char kCertRevocationCheckingEnabled[] = "ssl.rev_checking.enabled"; 1256 const char kCertRevocationCheckingEnabled[] = "ssl.rev_checking.enabled";
1257 const char kCertRevocationCheckingRequiredLocalAnchors[] = 1257 const char kCertRevocationCheckingRequiredLocalAnchors[] =
1258 "ssl.rev_checking.required_for_local_anchors"; 1258 "ssl.rev_checking.required_for_local_anchors";
1259 const char kSSLVersionMin[] = "ssl.version_min"; 1259 const char kSSLVersionMin[] = "ssl.version_min";
1260 const char kSSLVersionMax[] = "ssl.version_max"; 1260 const char kSSLVersionMax[] = "ssl.version_max";
1261 const char kCipherSuiteBlacklist[] = "ssl.cipher_suites.blacklist"; 1261 const char kCipherSuiteBlacklist[] = "ssl.cipher_suites.blacklist";
1262 const char kDisableSSLRecordSplitting[] = "ssl.ssl_record_splitting.disabled"; 1262 const char kDisableSSLRecordSplitting[] = "ssl.ssl_record_splitting.disabled";
1263 1263
1264 // Dictionary of dates when a site's SSL blocking interstitial was proceeded
1265 // through.
1266 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,
1267
1264 // A boolean pref of the EULA accepted flag. 1268 // A boolean pref of the EULA accepted flag.
1265 const char kEulaAccepted[] = "EulaAccepted"; 1269 const char kEulaAccepted[] = "EulaAccepted";
1266 1270
1267 // Boolean that specifies whether or not crash reporting and metrics reporting 1271 // Boolean that specifies whether or not crash reporting and metrics reporting
1268 // are sent over the network for analysis. 1272 // are sent over the network for analysis.
1269 const char kMetricsReportingEnabled[] = 1273 const char kMetricsReportingEnabled[] =
1270 "user_experience_metrics.reporting_enabled"; 1274 "user_experience_metrics.reporting_enabled";
1271 1275
1272 // Boolean that specifies whether or not crash reports are sent 1276 // Boolean that specifies whether or not crash reports are sent
1273 // over the network for analysis. 1277 // over the network for analysis.
(...skipping 1025 matching lines...) Expand 10 before | Expand all | Expand 10 after
2299 // "mapped_title" entries, detailing the bookmark target URL (if any), the title 2303 // "mapped_title" entries, detailing the bookmark target URL (if any), the title
2300 // given by the PartnerBookmarksProvider and either the user-visible renamed 2304 // given by the PartnerBookmarksProvider and either the user-visible renamed
2301 // title or an empty string if the bookmark node was removed. 2305 // title or an empty string if the bookmark node was removed.
2302 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; 2306 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings";
2303 #endif 2307 #endif
2304 2308
2305 // Whether DNS Quick Check is disabled in proxy resolution. 2309 // Whether DNS Quick Check is disabled in proxy resolution.
2306 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; 2310 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled";
2307 2311
2308 } // namespace prefs 2312 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698