| Index: net/socket/client_socket_factory.h
|
| ===================================================================
|
| --- net/socket/client_socket_factory.h (revision 69359)
|
| +++ net/socket/client_socket_factory.h (working copy)
|
| @@ -14,6 +14,7 @@
|
| namespace net {
|
|
|
| class AddressList;
|
| +class CertVerifier;
|
| class ClientSocket;
|
| class ClientSocketHandle;
|
| class DnsCertProvenanceChecker;
|
| @@ -28,6 +29,7 @@
|
| const HostPortPair& host_and_port,
|
| const SSLConfig& ssl_config,
|
| SSLHostInfo* ssl_host_info,
|
| + CertVerifier* cert_verifier,
|
| DnsCertProvenanceChecker* dns_cert_checker);
|
|
|
| // An interface used to instantiate ClientSocket objects. Used to facilitate
|
| @@ -48,6 +50,7 @@
|
| const HostPortPair& host_and_port,
|
| const SSLConfig& ssl_config,
|
| SSLHostInfo* ssl_host_info,
|
| + CertVerifier* cert_verifier,
|
| DnsCertProvenanceChecker* dns_cert_checker) = 0;
|
|
|
| // Deprecated function (http://crbug.com/37810) that takes a ClientSocket.
|
| @@ -55,7 +58,8 @@
|
| ClientSocket* transport_socket,
|
| const HostPortPair& host_and_port,
|
| const SSLConfig& ssl_config,
|
| - SSLHostInfo* ssl_host_info);
|
| + SSLHostInfo* ssl_host_info,
|
| + CertVerifier* cert_verifier);
|
|
|
| // Returns the default ClientSocketFactory.
|
| static ClientSocketFactory* GetDefaultFactory();
|
|
|