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

Unified Diff: net/http/http_cache.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/http/http_cache.h ('k') | net/http/http_network_session.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/http/http_cache.cc
diff --git a/net/http/http_cache.cc b/net/http/http_cache.cc
index 41e54366234007f96538e48a96fe46915a850d72..28e852961725e55e2f56ea5e53a7667aa64d3f2e 100644
--- a/net/http/http_cache.cc
+++ b/net/http/http_cache.cc
@@ -45,7 +45,7 @@ namespace {
HttpNetworkSession* CreateNetworkSession(
HostResolver* host_resolver,
CertVerifier* cert_verifier,
- OriginBoundCertService* origin_bound_cert_service,
+ ServerBoundCertService* server_bound_cert_service,
TransportSecurityState* transport_security_state,
ProxyService* proxy_service,
SSLHostInfoFactory* ssl_host_info_factory,
@@ -58,7 +58,7 @@ HttpNetworkSession* CreateNetworkSession(
HttpNetworkSession::Params params;
params.host_resolver = host_resolver;
params.cert_verifier = cert_verifier;
- params.origin_bound_cert_service = origin_bound_cert_service;
+ params.server_bound_cert_service = server_bound_cert_service;
params.transport_security_state = transport_security_state;
params.proxy_service = proxy_service;
params.ssl_host_info_factory = ssl_host_info_factory;
@@ -298,7 +298,7 @@ class HttpCache::SSLHostInfoFactoryAdaptor : public SSLHostInfoFactory {
//-----------------------------------------------------------------------------
HttpCache::HttpCache(HostResolver* host_resolver,
CertVerifier* cert_verifier,
- OriginBoundCertService* origin_bound_cert_service,
+ ServerBoundCertService* server_bound_cert_service,
TransportSecurityState* transport_security_state,
ProxyService* proxy_service,
const std::string& ssl_session_cache_shard,
@@ -320,7 +320,7 @@ HttpCache::HttpCache(HostResolver* host_resolver,
CreateNetworkSession(
host_resolver,
cert_verifier,
- origin_bound_cert_service,
+ server_bound_cert_service,
transport_security_state,
proxy_service,
ssl_host_info_factory_.get(),
« no previous file with comments | « net/http/http_cache.h ('k') | net/http/http_network_session.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698