Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(92)

Unified Diff: net/server/http_connection.h

Issue 10161005: Add DefaultListenSocket. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix build on Windows Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/net.gyp ('k') | net/server/http_connection.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_;
« no previous file with comments | « net/net.gyp ('k') | net/server/http_connection.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698