OLD | NEW |
(Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "components/ssl_config/ssl_config_prefs.h" |
| 6 |
| 7 namespace ssl_config { |
| 8 namespace prefs { |
| 9 |
| 10 // Prefs for SSLConfigServicePref. |
| 11 const char kCertRevocationCheckingEnabled[] = "ssl.rev_checking.enabled"; |
| 12 const char kCertRevocationCheckingRequiredLocalAnchors[] = |
| 13 "ssl.rev_checking.required_for_local_anchors"; |
| 14 const char kSSLVersionMin[] = "ssl.version_min"; |
| 15 const char kSSLVersionMax[] = "ssl.version_max"; |
| 16 const char kSSLVersionFallbackMin[] = "ssl.version_fallback_min"; |
| 17 const char kCipherSuiteBlacklist[] = "ssl.cipher_suites.blacklist"; |
| 18 const char kDisableSSLRecordSplitting[] = "ssl.ssl_record_splitting.disabled"; |
| 19 |
| 20 } // namespace prefs |
| 21 } // namespace ssl_config |
OLD | NEW |