Index: net/socket/client_socket_factory.h |
=================================================================== |
--- net/socket/client_socket_factory.h (revision 62921) |
+++ net/socket/client_socket_factory.h (working copy) |
@@ -17,14 +17,12 @@ |
class ClientSocketHandle; |
class SSLClientSocket; |
struct SSLConfig; |
-class SSLHostInfo; |
// Callback function to create new SSLClientSocket objects. |
typedef SSLClientSocket* (*SSLClientSocketFactory)( |
ClientSocketHandle* transport_socket, |
const std::string& hostname, |
- const SSLConfig& ssl_config, |
- SSLHostInfo* ssl_host_info); |
+ const SSLConfig& ssl_config); |
// An interface used to instantiate ClientSocket objects. Used to facilitate |
// testing code with mock socket implementations. |
@@ -42,14 +40,13 @@ |
virtual SSLClientSocket* CreateSSLClientSocket( |
ClientSocketHandle* transport_socket, |
const std::string& hostname, |
- const SSLConfig& ssl_config, |
- SSLHostInfo* ssl_host_info) = 0; |
+ const SSLConfig& ssl_config) = 0; |
+ |
// Deprecated function (http://crbug.com/37810) that takes a ClientSocket. |
virtual SSLClientSocket* CreateSSLClientSocket(ClientSocket* transport_socket, |
const std::string& hostname, |
- const SSLConfig& ssl_config, |
- SSLHostInfo* ssl_host_info); |
+ const SSLConfig& ssl_config); |
// Returns the default ClientSocketFactory. |
static ClientSocketFactory* GetDefaultFactory(); |