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

Unified Diff: net/base/ssl_config_service.cc

Issue 9617039: Change Origin bound certs -> Domain bound certs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/base/ssl_config_service.h ('k') | net/base/x509_util.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/ssl_config_service.cc
diff --git a/net/base/ssl_config_service.cc b/net/base/ssl_config_service.cc
index c46b73b327db3909a5a693072207ccf0be20a76c..16720bde2400d1a4826768c8a16db26c16f0b952 100644
--- a/net/base/ssl_config_service.cc
+++ b/net/base/ssl_config_service.cc
@@ -22,7 +22,7 @@ SSLConfig::SSLConfig()
ssl3_enabled(true),
tls1_enabled(true),
cached_info_enabled(false),
- origin_bound_certs_enabled(false),
+ domain_bound_certs_enabled(false),
false_start_enabled(true),
send_client_cert(false),
verify_ev_cert(false),
@@ -131,8 +131,8 @@ void SSLConfigService::ProcessConfigUpdate(const SSLConfig& orig_config,
(orig_config.tls1_enabled != new_config.tls1_enabled) ||
(orig_config.disabled_cipher_suites !=
new_config.disabled_cipher_suites) ||
- (orig_config.origin_bound_certs_enabled !=
- new_config.origin_bound_certs_enabled) ||
+ (orig_config.domain_bound_certs_enabled !=
+ new_config.domain_bound_certs_enabled) ||
(orig_config.false_start_enabled !=
new_config.false_start_enabled);
« no previous file with comments | « net/base/ssl_config_service.h ('k') | net/base/x509_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698