diff options
Diffstat (limited to 'net/socket/tcp_client_socket_win.h')
-rw-r--r-- | net/socket/tcp_client_socket_win.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/socket/tcp_client_socket_win.h b/net/socket/tcp_client_socket_win.h index 8beb983..9e2765a 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; |