Index: content/browser/renderer_host/p2p/socket_host_tcp_server.cc |
diff --git a/content/browser/renderer_host/p2p/socket_host_tcp_server.cc b/content/browser/renderer_host/p2p/socket_host_tcp_server.cc |
index ae5ed2b0c550c0c9d44a13ae73204755cd47453d..5578c79828e38dd3d7962adde13285567083d972 100644 |
--- a/content/browser/renderer_host/p2p/socket_host_tcp_server.cc |
+++ b/content/browser/renderer_host/p2p/socket_host_tcp_server.cc |
@@ -11,7 +11,7 @@ |
#include "net/base/net_errors.h" |
#include "net/base/net_util.h" |
#include "net/base/sys_addrinfo.h" |
-#include "net/socket/client_socket.h" |
+#include "net/socket/stream_socket.h" |
namespace { |
const int kListenBacklog = 5; |
@@ -126,7 +126,7 @@ P2PSocketHost* P2PSocketHostTcpServer::AcceptIncomingTcpConnection( |
if (it == accepted_sockets_.end()) |
return NULL; |
- net::ClientSocket* socket = it->second; |
+ net::StreamSocket* socket = it->second; |
accepted_sockets_.erase(it); |
scoped_ptr<P2PSocketHostTcp> result( |
new P2PSocketHostTcp(message_sender_, routing_id_, id)); |