| Index: net/socket/tcp_client_socket_pool.h
 | 
| diff --git a/net/socket/tcp_client_socket_pool.h b/net/socket/tcp_client_socket_pool.h
 | 
| index e3986e5f6d4807a39f0143b4137843e500482742..4c19509634b149a15205a26eda6cd592191c660e 100644
 | 
| --- a/net/socket/tcp_client_socket_pool.h
 | 
| +++ b/net/socket/tcp_client_socket_pool.h
 | 
| @@ -71,11 +71,6 @@ class TCPConnectJob : public ConnectJob {
 | 
|      STATE_NONE,
 | 
|    };
 | 
|  
 | 
| -  // Begins the host resolution and the TCP connect.  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.
 | 
| @@ -86,6 +81,11 @@ class TCPConnectJob : public ConnectJob {
 | 
|    int DoTCPConnect();
 | 
|    int DoTCPConnectComplete(int result);
 | 
|  
 | 
| +  // Begins the host resolution and the TCP connect.  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<TCPSocketParams> params_;
 | 
|    ClientSocketFactory* const client_socket_factory_;
 | 
|    CompletionCallbackImpl<TCPConnectJob> callback_;
 | 
| 
 |