| Index: net/socket/ssl_host_info.h
|
| diff --git a/net/socket/ssl_host_info.h b/net/socket/ssl_host_info.h
|
| index 54eeb2fc90c5f00358a10dc6404f448060958c63..406dae985de91918ff93afc34df4b9d13680e264 100644
|
| --- a/net/socket/ssl_host_info.h
|
| +++ b/net/socket/ssl_host_info.h
|
| @@ -15,7 +15,6 @@
|
| #include "net/base/cert_verifier.h"
|
| #include "net/base/cert_verify_result.h"
|
| #include "net/base/completion_callback.h"
|
| -#include "net/base/dnsrr_resolver.h"
|
| #include "net/base/net_export.h"
|
| #include "net/socket/ssl_client_socket.h"
|
|
|
| @@ -60,9 +59,6 @@ class NET_EXPORT_PRIVATE SSLHostInfo {
|
| // callback.
|
| virtual void Persist() = 0;
|
|
|
| - // StartDnsLookup triggers a DNS lookup for the host.
|
| - void StartDnsLookup(DnsRRResolver* dnsrr_resolver);
|
| -
|
| struct State {
|
| State();
|
| ~State();
|
| @@ -132,12 +128,6 @@ class NET_EXPORT_PRIVATE SSLHostInfo {
|
| SingleRequestCertVerifier verifier_;
|
| scoped_refptr<X509Certificate> cert_;
|
| base::WeakPtrFactory<SSLHostInfo> weak_factory_;
|
| -
|
| - DnsRRResolver* dnsrr_resolver_;
|
| - OldCompletionCallback* dns_callback_;
|
| - DnsRRResolver::Handle dns_handle_;
|
| - RRResponse dns_response_;
|
| - base::TimeTicks dns_lookup_start_time_;
|
| base::TimeTicks cert_verification_finished_time_;
|
| };
|
|
|
|
|