| Index: services/http_server/http_server_impl.h
|
| diff --git a/services/http_server/http_server_impl.h b/services/http_server/http_server_impl.h
|
| index f960f6ef863a69fa45244a5e6d79d15dc84ca7c4..d2f36ef3a85b619f7e4a8e680a480fa366f5d692 100644
|
| --- a/services/http_server/http_server_impl.h
|
| +++ b/services/http_server/http_server_impl.h
|
| @@ -24,6 +24,7 @@ class Connection;
|
| class HttpServerImpl : public HttpServer, public mojo::ErrorHandler {
|
| public:
|
| HttpServerImpl(mojo::ApplicationImpl* app);
|
| + ~HttpServerImpl() override;
|
|
|
| void AddBinding(mojo::InterfaceRequest<HttpServer> request);
|
|
|
| @@ -54,6 +55,7 @@ class HttpServerImpl : public HttpServer, public mojo::ErrorHandler {
|
|
|
| struct Handler {
|
| Handler(const std::string& pattern, HttpHandlerPtr http_handler);
|
| + ~Handler();
|
| scoped_ptr<re2::RE2> pattern;
|
| HttpHandlerPtr http_handler;
|
|
|
|
|