diff options
author | agl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-22 19:33:18 +0000 |
---|---|---|
committer | agl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-22 19:33:18 +0000 |
commit | 345c613b60d6f2b4cce28dcc130b37057d94759b (patch) | |
tree | fa732fc44ec95b03fde762f21ee602c4960f3860 /net/http/http_cache.cc | |
parent | fb4c1c787dcb0b082c5c4a65445df1bf65b71519 (diff) | |
download | chromium_src-345c613b60d6f2b4cce28dcc130b37057d94759b.zip chromium_src-345c613b60d6f2b4cce28dcc130b37057d94759b.tar.gz chromium_src-345c613b60d6f2b4cce28dcc130b37057d94759b.tar.bz2 |
Revert "Revert "net: Plumb DnsCertProvenanceChecker around.""
(See r66623 for details.)
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@66985 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/http/http_cache.cc')
-rw-r--r-- | net/http/http_cache.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/net/http/http_cache.cc b/net/http/http_cache.cc index 1342afa..896a6ac 100644 --- a/net/http/http_cache.cc +++ b/net/http/http_cache.cc @@ -280,6 +280,7 @@ class HttpCache::SSLHostInfoFactoryAdaptor : public SSLHostInfoFactory { HttpCache::HttpCache(HostResolver* host_resolver, DnsRRResolver* dnsrr_resolver, + DnsCertProvenanceChecker* dns_cert_checker_, ProxyService* proxy_service, SSLConfigService* ssl_config_service, HttpAuthHandlerFactory* http_auth_handler_factory, @@ -292,7 +293,8 @@ HttpCache::HttpCache(HostResolver* host_resolver, ssl_host_info_factory_(new SSLHostInfoFactoryAdaptor( ALLOW_THIS_IN_INITIALIZER_LIST(this))), network_layer_(HttpNetworkLayer::CreateFactory(host_resolver, - dnsrr_resolver, ssl_host_info_factory_.get(), + dnsrr_resolver, dns_cert_checker_, + ssl_host_info_factory_.get(), proxy_service, ssl_config_service, http_auth_handler_factory, network_delegate, net_log)), ALLOW_THIS_IN_INITIALIZER_LIST(task_factory_(this)), |