summaryrefslogtreecommitdiffstats
path: root/net/socket/server_socket.h
diff options
context:
space:
mode:
Diffstat (limited to 'net/socket/server_socket.h')
-rw-r--r--net/socket/server_socket.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/socket/server_socket.h b/net/socket/server_socket.h
index f037b036..4309304 100644
--- a/net/socket/server_socket.h
+++ b/net/socket/server_socket.h
@@ -10,8 +10,8 @@
namespace net {
-class ClientSocket;
class IPEndPoint;
+class StreamSocket;
class ServerSocket {
public:
@@ -27,7 +27,7 @@ class ServerSocket {
// Accept connection. Callback is called when new connection is
// accepted.
- virtual int Accept(scoped_ptr<ClientSocket>* socket,
+ virtual int Accept(scoped_ptr<StreamSocket>* socket,
CompletionCallback* callback) = 0;
private: