| 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();
|
|
|
|
|