Index: net/server/http_connection.h |
diff --git a/net/server/http_connection.h b/net/server/http_connection.h |
index b292559bb73b15bb721bedc2b7da62810f1ab644..74cdcabac72ec63b8e46371cf457d4b8cd0b2ed2 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(); |