Index: net/http/http_cache.cc |
=================================================================== |
--- net/http/http_cache.cc (revision 69359) |
+++ net/http/http_cache.cc (working copy) |
@@ -263,7 +263,7 @@ |
class HttpCache::SSLHostInfoFactoryAdaptor : public SSLHostInfoFactory { |
public: |
- SSLHostInfoFactoryAdaptor(HttpCache* http_cache) |
+ explicit SSLHostInfoFactoryAdaptor(HttpCache* http_cache) |
: http_cache_(http_cache) { |
} |
@@ -279,6 +279,7 @@ |
//----------------------------------------------------------------------------- |
HttpCache::HttpCache(HostResolver* host_resolver, |
+ CertVerifier* cert_verifier, |
DnsRRResolver* dnsrr_resolver, |
DnsCertProvenanceChecker* dns_cert_checker_, |
ProxyService* proxy_service, |
@@ -293,7 +294,7 @@ |
ssl_host_info_factory_(new SSLHostInfoFactoryAdaptor( |
ALLOW_THIS_IN_INITIALIZER_LIST(this))), |
network_layer_(HttpNetworkLayer::CreateFactory(host_resolver, |
- dnsrr_resolver, dns_cert_checker_, |
+ cert_verifier, dnsrr_resolver, dns_cert_checker_, |
ssl_host_info_factory_.get(), |
proxy_service, ssl_config_service, |
http_auth_handler_factory, network_delegate, net_log)), |