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

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

Issue 1360633002: Implement Token Binding negotiation TLS extension (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@test-server-flags
Patch Set: rebase Created 5 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 1227 matching lines...) Expand 10 before | Expand all | Expand 10 after
1238 1238
1239 // Prefs for SSLConfigServicePref. 1239 // Prefs for SSLConfigServicePref.
1240 const char kCertRevocationCheckingEnabled[] = "ssl.rev_checking.enabled"; 1240 const char kCertRevocationCheckingEnabled[] = "ssl.rev_checking.enabled";
1241 const char kCertRevocationCheckingRequiredLocalAnchors[] = 1241 const char kCertRevocationCheckingRequiredLocalAnchors[] =
1242 "ssl.rev_checking.required_for_local_anchors"; 1242 "ssl.rev_checking.required_for_local_anchors";
1243 const char kSSLVersionMin[] = "ssl.version_min"; 1243 const char kSSLVersionMin[] = "ssl.version_min";
1244 const char kSSLVersionMax[] = "ssl.version_max"; 1244 const char kSSLVersionMax[] = "ssl.version_max";
1245 const char kSSLVersionFallbackMin[] = "ssl.version_fallback_min"; 1245 const char kSSLVersionFallbackMin[] = "ssl.version_fallback_min";
1246 const char kCipherSuiteBlacklist[] = "ssl.cipher_suites.blacklist"; 1246 const char kCipherSuiteBlacklist[] = "ssl.cipher_suites.blacklist";
1247 const char kDisableSSLRecordSplitting[] = "ssl.ssl_record_splitting.disabled"; 1247 const char kDisableSSLRecordSplitting[] = "ssl.ssl_record_splitting.disabled";
1248 const char kEnableTokenBinding[] = "ssl.token_binding.enabled";
1248 1249
1249 // Boolean that specifies whether or not crash reporting and metrics reporting 1250 // Boolean that specifies whether or not crash reporting and metrics reporting
1250 // are sent over the network for analysis. 1251 // are sent over the network for analysis.
1251 const char kMetricsReportingEnabled[] = 1252 const char kMetricsReportingEnabled[] =
1252 "user_experience_metrics.reporting_enabled"; 1253 "user_experience_metrics.reporting_enabled";
1253 1254
1254 // Boolean that specifies whether or not crash reports are sent 1255 // Boolean that specifies whether or not crash reports are sent
1255 // over the network for analysis. 1256 // over the network for analysis.
1256 #if defined(OS_ANDROID) 1257 #if defined(OS_ANDROID)
1257 const char kCrashReportingEnabled[] = 1258 const char kCrashReportingEnabled[] =
(...skipping 967 matching lines...) Expand 10 before | Expand all | Expand 10 after
2225 "supervised_users.whitelists"; 2226 "supervised_users.whitelists";
2226 2227
2227 #if defined(ENABLE_EXTENSIONS) 2228 #if defined(ENABLE_EXTENSIONS)
2228 // Policy that indicates how to handle animated images. 2229 // Policy that indicates how to handle animated images.
2229 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; 2230 const char kAnimationPolicy[] = "settings.a11y.animation_policy";
2230 #endif 2231 #endif
2231 2232
2232 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload"; 2233 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload";
2233 2234
2234 } // namespace prefs 2235 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698