Index: net/socket/socks_client_socket_pool.h |
diff --git a/net/socket/socks_client_socket_pool.h b/net/socket/socks_client_socket_pool.h |
index 3ba71546142f3d0a05f040c68bf3635316cad0ef..5608c20882e8b3fa2d77477d05a5e392446056ab 100644 |
--- a/net/socket/socks_client_socket_pool.h |
+++ b/net/socket/socks_client_socket_pool.h |
@@ -75,11 +75,6 @@ class SOCKSConnectJob : public ConnectJob { |
STATE_NONE, |
}; |
- // Begins the tcp connection and the SOCKS handshake. 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. |
@@ -90,6 +85,11 @@ class SOCKSConnectJob : public ConnectJob { |
int DoSOCKSConnect(); |
int DoSOCKSConnectComplete(int result); |
+ // Begins the tcp connection and the SOCKS handshake. 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<SOCKSSocketParams> socks_params_; |
TCPClientSocketPool* const tcp_pool_; |
HostResolver* const resolver_; |