Index: net/socket/tcp_server_socket_libevent.h |
diff --git a/net/socket/tcp_server_socket_libevent.h b/net/socket/tcp_server_socket_libevent.h |
index 9d30953e522d38fb854de346e566108fdea646c4..41dd40e5a5505b30ca797ed6d68485f3ca7eee1e 100644 |
--- a/net/socket/tcp_server_socket_libevent.h |
+++ b/net/socket/tcp_server_socket_libevent.h |
@@ -27,7 +27,7 @@ class TCPServerSocketLibevent : public ServerSocket, |
// net::ServerSocket implementation. |
virtual int Listen(const net::IPEndPoint& address, int backlog); |
virtual int GetLocalAddress(IPEndPoint* address) const; |
- virtual int Accept(scoped_ptr<ClientSocket>* socket, |
+ virtual int Accept(scoped_ptr<StreamSocket>* socket, |
CompletionCallback* callback); |
// MessageLoopForIO::Watcher implementation. |
@@ -35,14 +35,14 @@ class TCPServerSocketLibevent : public ServerSocket, |
virtual void OnFileCanWriteWithoutBlocking(int fd); |
private: |
- int AcceptInternal(scoped_ptr<ClientSocket>* socket); |
+ int AcceptInternal(scoped_ptr<StreamSocket>* socket); |
void Close(); |
int socket_; |
MessageLoopForIO::FileDescriptorWatcher accept_socket_watcher_; |
- scoped_ptr<ClientSocket>* accept_socket_; |
+ scoped_ptr<StreamSocket>* accept_socket_; |
CompletionCallback* accept_callback_; |
BoundNetLog net_log_; |