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

Side by Side Diff: chrome/common/pref_names.cc

Issue 619463002: net: disable SSLv3 fallback. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: ... Created 6 years, 2 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
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 1281 matching lines...) Expand 10 before | Expand all | Expand 10 after
1292 // explanation of why this redundancy is needed. 1292 // explanation of why this redundancy is needed.
1293 const char kProfileResetPromptMementosInLocalState[] = 1293 const char kProfileResetPromptMementosInLocalState[] =
1294 "profile.reset_prompt_mementos"; 1294 "profile.reset_prompt_mementos";
1295 1295
1296 // Prefs for SSLConfigServicePref. 1296 // Prefs for SSLConfigServicePref.
1297 const char kCertRevocationCheckingEnabled[] = "ssl.rev_checking.enabled"; 1297 const char kCertRevocationCheckingEnabled[] = "ssl.rev_checking.enabled";
1298 const char kCertRevocationCheckingRequiredLocalAnchors[] = 1298 const char kCertRevocationCheckingRequiredLocalAnchors[] =
1299 "ssl.rev_checking.required_for_local_anchors"; 1299 "ssl.rev_checking.required_for_local_anchors";
1300 const char kSSLVersionMin[] = "ssl.version_min"; 1300 const char kSSLVersionMin[] = "ssl.version_min";
1301 const char kSSLVersionMax[] = "ssl.version_max"; 1301 const char kSSLVersionMax[] = "ssl.version_max";
1302 const char kSSLVersionFallbackMin[] = "ssl.version_fallback_min";
1302 const char kCipherSuiteBlacklist[] = "ssl.cipher_suites.blacklist"; 1303 const char kCipherSuiteBlacklist[] = "ssl.cipher_suites.blacklist";
1303 const char kDisableSSLRecordSplitting[] = "ssl.ssl_record_splitting.disabled"; 1304 const char kDisableSSLRecordSplitting[] = "ssl.ssl_record_splitting.disabled";
1304 1305
1305 // Dictionary of dates when a site's SSL blocking interstitial was proceeded 1306 // Dictionary of dates when a site's SSL blocking interstitial was proceeded
1306 // through. 1307 // through.
1307 const char kSSLBlockingBypassed[] = "ssl.ssl_blocking_bypassed"; 1308 const char kSSLBlockingBypassed[] = "ssl.ssl_blocking_bypassed";
1308 1309
1309 // A boolean pref of the EULA accepted flag. 1310 // A boolean pref of the EULA accepted flag.
1310 const char kEulaAccepted[] = "EulaAccepted"; 1311 const char kEulaAccepted[] = "EulaAccepted";
1311 1312
(...skipping 1016 matching lines...) Expand 10 before | Expand all | Expand 10 after
2328 // Whether DNS Quick Check is disabled in proxy resolution. 2329 // Whether DNS Quick Check is disabled in proxy resolution.
2329 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; 2330 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled";
2330 2331
2331 // Whether Guest Mode is enabled within the browser. 2332 // Whether Guest Mode is enabled within the browser.
2332 const char kBrowserGuestModeEnabled[] = "profile.browser_guest_enabled"; 2333 const char kBrowserGuestModeEnabled[] = "profile.browser_guest_enabled";
2333 2334
2334 // Whether Adding a new Person is enabled within the user manager. 2335 // Whether Adding a new Person is enabled within the user manager.
2335 const char kBrowserAddPersonEnabled[] = "profile.add_person_enabled"; 2336 const char kBrowserAddPersonEnabled[] = "profile.add_person_enabled";
2336 2337
2337 } // namespace prefs 2338 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698