| Index: net/socket/ssl_client_socket_pool.h
|
| diff --git a/net/socket/ssl_client_socket_pool.h b/net/socket/ssl_client_socket_pool.h
|
| index d9d959493f7581cd01373bd76c8aeec5ece7be33..41cf2a7f7ef46b9a92d7f9856090ba83469ffd39 100644
|
| --- a/net/socket/ssl_client_socket_pool.h
|
| +++ b/net/socket/ssl_client_socket_pool.h
|
| @@ -122,11 +122,6 @@ class SSLConnectJob : public ConnectJob {
|
| STATE_NONE,
|
| };
|
|
|
| - // Starts the SSL connection process. Returns OK on success and
|
| - // ERR_IO_PENDING if it cannot immediately service the request.
|
| - // Otherwise, it returns a net error code.
|
| - virtual int ConnectInternal();
|
| -
|
| void OnIOComplete(int result);
|
|
|
| // Runs the state transition loop.
|
| @@ -141,6 +136,11 @@ class SSLConnectJob : public ConnectJob {
|
| int DoSSLConnect();
|
| int DoSSLConnectComplete(int result);
|
|
|
| + // Starts the SSL connection process. Returns OK on success and
|
| + // ERR_IO_PENDING if it cannot immediately service the request.
|
| + // Otherwise, it returns a net error code.
|
| + virtual int ConnectInternal();
|
| +
|
| scoped_refptr<SSLSocketParams> params_;
|
| TCPClientSocketPool* const tcp_pool_;
|
| SOCKSClientSocketPool* const socks_pool_;
|
|
|