Index: net/socket/tcp_client_socket_libevent.h |
diff --git a/net/socket/tcp_client_socket_libevent.h b/net/socket/tcp_client_socket_libevent.h |
index 89ffac1509585d15220057661fd1b6957f6885e0..45f24c26284376de34eea440070e2e9cd03c7708 100644 |
--- a/net/socket/tcp_client_socket_libevent.h |
+++ b/net/socket/tcp_client_socket_libevent.h |
@@ -13,7 +13,7 @@ |
#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" |
struct event; // From libevent |
@@ -22,7 +22,7 @@ namespace net { |
class BoundNetLog; |
// A client socket that uses TCP as the transport layer. |
-class TCPClientSocketLibevent : public ClientSocket, base::NonThreadSafe { |
+class TCPClientSocketLibevent : 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 |
@@ -40,7 +40,7 @@ class TCPClientSocketLibevent : public ClientSocket, base::NonThreadSafe { |
// and for testing. |
void AdoptSocket(int socket); |
- // ClientSocket methods: |
+ // StreamSocket methods: |
virtual int Connect(CompletionCallback* callback); |
virtual void Disconnect(); |
virtual bool IsConnected() const; |