Index: net/server/http_connection.h |
diff --git a/net/server/http_connection.h b/net/server/http_connection.h |
index e22cb27eaa1981b2e6ccfe7736abaa91cafb0f0b..3911c418999f1277720d59521f13f4eb8fdefcf6 100644 |
--- a/net/server/http_connection.h |
+++ b/net/server/http_connection.h |
@@ -15,7 +15,7 @@ |
namespace net { |
class HttpServer; |
-class ListenSocket; |
+class StreamListenSocket; |
class WebSocket; |
class HttpConnection { |
@@ -35,13 +35,13 @@ class HttpConnection { |
friend class HttpServer; |
static int last_id_; |
- HttpConnection(HttpServer* server, ListenSocket* sock); |
+ HttpConnection(HttpServer* server, StreamListenSocket* sock); |
~HttpConnection(); |
void DetachSocket(); |
HttpServer* server_; |
- scoped_refptr<ListenSocket> socket_; |
+ scoped_refptr<StreamListenSocket> socket_; |
scoped_ptr<WebSocket> web_socket_; |
std::string recv_data_; |
int id_; |