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

Side by Side Diff: components/ssl_config/ssl_config_prefs.cc

Issue 2098723002: Unwind the fallback admin policy knobs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: I hear it's useful to upload CLs that compile sometimes. Created 4 years, 6 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 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 17
19 } // namespace prefs 18 } // namespace prefs
20 } // namespace ssl_config 19 } // namespace ssl_config
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698