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

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: 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 1246 matching lines...) Expand 10 before | Expand all | Expand 10 after
1257 1257
1258 // Prefs for SSLConfigServicePref. 1258 // Prefs for SSLConfigServicePref.
1259 const char kCertRevocationCheckingEnabled[] = "ssl.rev_checking.enabled"; 1259 const char kCertRevocationCheckingEnabled[] = "ssl.rev_checking.enabled";
1260 const char kCertRevocationCheckingRequiredLocalAnchors[] = 1260 const char kCertRevocationCheckingRequiredLocalAnchors[] =
1261 "ssl.rev_checking.required_for_local_anchors"; 1261 "ssl.rev_checking.required_for_local_anchors";
1262 const char kSSLVersionMin[] = "ssl.version_min"; 1262 const char kSSLVersionMin[] = "ssl.version_min";
1263 const char kSSLVersionMax[] = "ssl.version_max"; 1263 const char kSSLVersionMax[] = "ssl.version_max";
1264 const char kCipherSuiteBlacklist[] = "ssl.cipher_suites.blacklist"; 1264 const char kCipherSuiteBlacklist[] = "ssl.cipher_suites.blacklist";
1265 const char kDisableSSLRecordSplitting[] = "ssl.ssl_record_splitting.disabled"; 1265 const char kDisableSSLRecordSplitting[] = "ssl.ssl_record_splitting.disabled";
1266 1266
1267 // Dictionary of dates when a site's SSL blocking interstitial was proceeded
1268 // through.
1269 const char kSSLBlockingBypassed[] = "ssl.ssl_blocking_bypassed";
1270
1267 // A boolean pref of the EULA accepted flag. 1271 // A boolean pref of the EULA accepted flag.
1268 const char kEulaAccepted[] = "EulaAccepted"; 1272 const char kEulaAccepted[] = "EulaAccepted";
1269 1273
1270 // Boolean that specifies whether or not crash reporting and metrics reporting 1274 // Boolean that specifies whether or not crash reporting and metrics reporting
1271 // are sent over the network for analysis. 1275 // are sent over the network for analysis.
1272 const char kMetricsReportingEnabled[] = 1276 const char kMetricsReportingEnabled[] =
1273 "user_experience_metrics.reporting_enabled"; 1277 "user_experience_metrics.reporting_enabled";
1274 1278
1275 // Boolean that specifies whether or not crash reports are sent 1279 // Boolean that specifies whether or not crash reports are sent
1276 // over the network for analysis. 1280 // over the network for analysis.
(...skipping 1019 matching lines...) Expand 10 before | Expand all | Expand 10 after
2296 // "mapped_title" entries, detailing the bookmark target URL (if any), the title 2300 // "mapped_title" entries, detailing the bookmark target URL (if any), the title
2297 // given by the PartnerBookmarksProvider and either the user-visible renamed 2301 // given by the PartnerBookmarksProvider and either the user-visible renamed
2298 // title or an empty string if the bookmark node was removed. 2302 // title or an empty string if the bookmark node was removed.
2299 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; 2303 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings";
2300 #endif 2304 #endif
2301 2305
2302 // Whether DNS Quick Check is disabled in proxy resolution. 2306 // Whether DNS Quick Check is disabled in proxy resolution.
2303 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; 2307 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled";
2304 2308
2305 } // namespace prefs 2309 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698