summaryrefslogtreecommitdiffstats
path: root/net/server/http_connection.cc
diff options
context:
space:
mode:
Diffstat (limited to 'net/server/http_connection.cc')
-rw-r--r--net/server/http_connection.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/net/server/http_connection.cc b/net/server/http_connection.cc
index 3404c68..d601f34 100644
--- a/net/server/http_connection.cc
+++ b/net/server/http_connection.cc
@@ -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.
@@ -6,7 +6,7 @@
#include "base/string_util.h"
#include "base/stringprintf.h"
-#include "net/base/listen_socket.h"
+#include "net/base/stream_listen_socket.h"
#include "net/server/http_server.h"
#include "net/server/web_socket.h"
@@ -62,7 +62,7 @@ void HttpConnection::Send500(const std::string& message) {
message.c_str()));
}
-HttpConnection::HttpConnection(HttpServer* server, ListenSocket* sock)
+HttpConnection::HttpConnection(HttpServer* server, StreamListenSocket* sock)
: server_(server),
socket_(sock) {
id_ = last_id_++;