| Index: net/socket/tcp_client_socket_win.h
|
| diff --git a/net/socket/tcp_client_socket_win.h b/net/socket/tcp_client_socket_win.h
|
| index 8beb98361ac747a57da319af21faf40104d4ad37..9e2765a30a25567ccf1fc191c1d8b8ae2a7a7a5a 100644
|
| --- a/net/socket/tcp_client_socket_win.h
|
| +++ b/net/socket/tcp_client_socket_win.h
|
| @@ -12,13 +12,13 @@
|
| #include "net/base/address_list.h"
|
| #include "net/base/completion_callback.h"
|
| #include "net/base/net_log.h"
|
| -#include "net/socket/client_socket.h"
|
| +#include "net/socket/stream_socket.h"
|
|
|
| namespace net {
|
|
|
| class BoundNetLog;
|
|
|
| -class TCPClientSocketWin : public ClientSocket, base::NonThreadSafe {
|
| +class TCPClientSocketWin : public StreamSocket, base::NonThreadSafe {
|
| public:
|
| // The IP address(es) and port number to connect to. The TCP socket will try
|
| // each IP address in the list until it succeeds in establishing a
|
| @@ -36,7 +36,7 @@ class TCPClientSocketWin : public ClientSocket, base::NonThreadSafe {
|
| // and for testing.
|
| void AdoptSocket(SOCKET socket);
|
|
|
| - // ClientSocket methods:
|
| + // StreamSocket methods:
|
| virtual int Connect(CompletionCallback* callback);
|
| virtual void Disconnect();
|
| virtual bool IsConnected() const;
|
|
|