| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 "components/ssl_config/ssl_config_prefs.h" | 5 #include "components/ssl_config/ssl_config_prefs.h" |
| 6 | 6 |
| 7 namespace ssl_config { | 7 namespace ssl_config { |
| 8 namespace prefs { | 8 namespace prefs { |
| 9 | 9 |
| 10 // Prefs for SSLConfigServicePref. | 10 // Prefs for SSLConfigServicePref. |
| 11 const char kCertRevocationCheckingEnabled[] = "ssl.rev_checking.enabled"; | 11 const char kCertRevocationCheckingEnabled[] = "ssl.rev_checking.enabled"; |
| 12 const char kCertRevocationCheckingRequiredLocalAnchors[] = | 12 const char kCertRevocationCheckingRequiredLocalAnchors[] = |
| 13 "ssl.rev_checking.required_for_local_anchors"; | 13 "ssl.rev_checking.required_for_local_anchors"; |
| 14 const char kSSLVersionMin[] = "ssl.version_min"; | 14 const char kSSLVersionMin[] = "ssl.version_min"; |
| 15 const char kSSLVersionMax[] = "ssl.version_max"; | 15 const char kSSLVersionMax[] = "ssl.version_max"; |
| 16 const char kSSLVersionFallbackMin[] = "ssl.version_fallback_min"; | |
| 17 const char kCipherSuiteBlacklist[] = "ssl.cipher_suites.blacklist"; | 16 const char kCipherSuiteBlacklist[] = "ssl.cipher_suites.blacklist"; |
| 18 const char kDHEEnabled[] = "ssl.dhe_enabled"; | 17 const char kDHEEnabled[] = "ssl.dhe_enabled"; |
| 19 | 18 |
| 20 } // namespace prefs | 19 } // namespace prefs |
| 21 } // namespace ssl_config | 20 } // namespace ssl_config |
| OLD | NEW |