summaryrefslogtreecommitdiffstats
path: root/net/socket/tcp_server_socket_libevent.h
diff options
context:
space:
mode:
Diffstat (limited to 'net/socket/tcp_server_socket_libevent.h')
-rw-r--r--net/socket/tcp_server_socket_libevent.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/socket/tcp_server_socket_libevent.h b/net/socket/tcp_server_socket_libevent.h
index 90e90d8..df846b2 100644
--- a/net/socket/tcp_server_socket_libevent.h
+++ b/net/socket/tcp_server_socket_libevent.h
@@ -29,7 +29,7 @@ class NET_EXPORT_PRIVATE TCPServerSocketLibevent
virtual int Listen(const net::IPEndPoint& address, int backlog);
virtual int GetLocalAddress(IPEndPoint* address) const;
virtual int Accept(scoped_ptr<StreamSocket>* socket,
- CompletionCallback* callback);
+ OldCompletionCallback* callback);
// MessageLoopForIO::Watcher implementation.
virtual void OnFileCanReadWithoutBlocking(int fd);
@@ -44,7 +44,7 @@ class NET_EXPORT_PRIVATE TCPServerSocketLibevent
MessageLoopForIO::FileDescriptorWatcher accept_socket_watcher_;
scoped_ptr<StreamSocket>* accept_socket_;
- CompletionCallback* accept_callback_;
+ OldCompletionCallback* accept_callback_;
BoundNetLog net_log_;
};