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

Unified Diff: services/http_server/http_server_impl.cc

Issue 914213002: Appease clang Chromium-style / fix a build error. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: override. Created 5 years, 10 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 | « services/http_server/http_server_impl.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/http_server/http_server_impl.cc
diff --git a/services/http_server/http_server_impl.cc b/services/http_server/http_server_impl.cc
index 70650dfc9443e0399e1a768e1e64957c931bbb69..5980ca9010fcc25c4e8e298fa41d1d191e05e6eb 100644
--- a/services/http_server/http_server_impl.cc
+++ b/services/http_server/http_server_impl.cc
@@ -30,6 +30,9 @@ HttpServerImpl::HttpServerImpl(mojo::ApplicationImpl* app)
Start();
}
+HttpServerImpl::~HttpServerImpl() {
+}
+
void HttpServerImpl::AddBinding(mojo::InterfaceRequest<HttpServer> request) {
bindings_.AddBinding(this, request.Pass());
}
@@ -159,4 +162,7 @@ HttpServerImpl::Handler::Handler(const std::string& pattern,
: pattern(new RE2(pattern.c_str())), http_handler(http_handler.Pass()) {
}
+HttpServerImpl::Handler::~Handler() {
+}
+
} // namespace http_server
« no previous file with comments | « services/http_server/http_server_impl.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698