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

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: Rip out TB key lookup from SSLClientSocketOpenSSL; fold TokenBindingExtension class into SSLClientS… 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 1234 matching lines...) Expand 10 before | Expand all | Expand 10 after
1245 "profile.reset_prompt_mementos"; 1245 "profile.reset_prompt_mementos";
1246 1246
1247 // Prefs for SSLConfigServicePref. 1247 // Prefs for SSLConfigServicePref.
1248 const char kCertRevocationCheckingEnabled[] = "ssl.rev_checking.enabled"; 1248 const char kCertRevocationCheckingEnabled[] = "ssl.rev_checking.enabled";
1249 const char kCertRevocationCheckingRequiredLocalAnchors[] = 1249 const char kCertRevocationCheckingRequiredLocalAnchors[] =
1250 "ssl.rev_checking.required_for_local_anchors"; 1250 "ssl.rev_checking.required_for_local_anchors";
1251 const char kSSLVersionMin[] = "ssl.version_min"; 1251 const char kSSLVersionMin[] = "ssl.version_min";
1252 const char kSSLVersionMax[] = "ssl.version_max"; 1252 const char kSSLVersionMax[] = "ssl.version_max";
1253 const char kSSLVersionFallbackMin[] = "ssl.version_fallback_min"; 1253 const char kSSLVersionFallbackMin[] = "ssl.version_fallback_min";
1254 const char kCipherSuiteBlacklist[] = "ssl.cipher_suites.blacklist"; 1254 const char kCipherSuiteBlacklist[] = "ssl.cipher_suites.blacklist";
1255 const char kEnableTokenBinding[] = "ssl.token_binding.enabled";
davidben 2015/10/15 21:52:08 See comment on previous patchset about whether thi
1255 1256
1256 // Boolean that specifies whether or not crash reports are sent 1257 // Boolean that specifies whether or not crash reports are sent
1257 // over the network for analysis. 1258 // over the network for analysis.
1258 #if defined(OS_ANDROID) 1259 #if defined(OS_ANDROID)
1259 const char kCrashReportingEnabled[] = 1260 const char kCrashReportingEnabled[] =
1260 "user_experience_metrics_crash.reporting_enabled"; 1261 "user_experience_metrics_crash.reporting_enabled";
1261 #endif 1262 #endif
1262 1263
1263 // This is the location of a list of dictionaries of plugin stability stats. 1264 // This is the location of a list of dictionaries of plugin stability stats.
1264 const char kStabilityPluginStats[] = 1265 const char kStabilityPluginStats[] =
(...skipping 928 matching lines...) Expand 10 before | Expand all | Expand 10 after
2193 "supervised_users.whitelists"; 2194 "supervised_users.whitelists";
2194 2195
2195 #if defined(ENABLE_EXTENSIONS) 2196 #if defined(ENABLE_EXTENSIONS)
2196 // Policy that indicates how to handle animated images. 2197 // Policy that indicates how to handle animated images.
2197 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; 2198 const char kAnimationPolicy[] = "settings.a11y.animation_policy";
2198 #endif 2199 #endif
2199 2200
2200 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload"; 2201 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload";
2201 2202
2202 } // namespace prefs 2203 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698