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

Unified Diff: net/socket/ssl_client_socket_pool.cc

Issue 8692012: net: replace DnsRRResoler with TransportSecurityState in plumbing. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: ... Created 9 years 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/socket/ssl_client_socket_pool.h ('k') | net/socket/ssl_host_info.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/socket/ssl_client_socket_pool.cc
diff --git a/net/socket/ssl_client_socket_pool.cc b/net/socket/ssl_client_socket_pool.cc
index 4fffac65ebf8003ee99c705e7b93f205e9d53c16..4200c1c0a7033906c6fc3d87c273b39c89a8cd24 100644
--- a/net/socket/ssl_client_socket_pool.cc
+++ b/net/socket/ssl_client_socket_pool.cc
@@ -194,9 +194,6 @@ int SSLConnectJob::DoTransportConnect() {
}
if (ssl_host_info_.get()) {
- if (context_.dnsrr_resolver)
- ssl_host_info_->StartDnsLookup(context_.dnsrr_resolver);
-
// This starts fetching the SSL host info from the disk cache for early
// certificate verification and the TLS cached information extension.
ssl_host_info_->Start();
@@ -447,7 +444,7 @@ SSLClientSocketPool::SSLClientSocketPool(
HostResolver* host_resolver,
CertVerifier* cert_verifier,
OriginBoundCertService* origin_bound_cert_service,
- DnsRRResolver* dnsrr_resolver,
+ TransportSecurityState* transport_security_state,
DnsCertProvenanceChecker* dns_cert_checker,
SSLHostInfoFactory* ssl_host_info_factory,
ClientSocketFactory* client_socket_factory,
@@ -470,7 +467,7 @@ SSLClientSocketPool::SSLClientSocketPool(
SSLClientSocketContext(
cert_verifier,
origin_bound_cert_service,
- dnsrr_resolver,
+ transport_security_state,
dns_cert_checker,
ssl_host_info_factory),
net_log)),
« no previous file with comments | « net/socket/ssl_client_socket_pool.h ('k') | net/socket/ssl_host_info.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698