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

Unified Diff: net/server/http_connection.h

Issue 10386048: Decouple DevTools from socket implementation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Update 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
Index: net/server/http_connection.h
diff --git a/net/server/http_connection.h b/net/server/http_connection.h
index 3911c418999f1277720d59521f13f4eb8fdefcf6..3dcb76686e9a1174791d01e860f6a6feaf622722 100644
--- a/net/server/http_connection.h
+++ b/net/server/http_connection.h
@@ -20,6 +20,8 @@ class WebSocket;
class HttpConnection {
public:
+ ~HttpConnection();
+
void Send(const std::string& data);
void Send(const char* bytes, int len);
void Send200(const std::string& data, const std::string& content_type);
@@ -36,7 +38,6 @@ class HttpConnection {
static int last_id_;
HttpConnection(HttpServer* server, StreamListenSocket* sock);
- ~HttpConnection();
void DetachSocket();

Powered by Google App Engine
This is Rietveld 408576698