summaryrefslogtreecommitdiffstats
path: root/net/server/http_connection.h
diff options
context:
space:
mode:
Diffstat (limited to 'net/server/http_connection.h')
-rw-r--r--net/server/http_connection.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/net/server/http_connection.h b/net/server/http_connection.h
index e22cb27..b292559 100644
--- a/net/server/http_connection.h
+++ b/net/server/http_connection.h
@@ -1,4 +1,4 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -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_;