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

Unified Diff: content/child/service_factory.cc

Issue 2398783002: Rename a bunch of Mojo Application stuff to reference Services. (Closed)
Patch Set: . Created 4 years, 2 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 | « content/child/service_factory.h ('k') | content/common/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/service_factory.cc
diff --git a/content/child/service_factory.cc b/content/child/service_factory.cc
index dc9832ea72eaf3f43bd34ffb550e535fdc5a312e..956be49eb33728724f65064342125e6b1ee282c0 100644
--- a/content/child/service_factory.cc
+++ b/content/child/service_factory.cc
@@ -8,7 +8,7 @@
#include "base/bind.h"
#include "base/memory/ptr_util.h"
-#include "content/common/mojo/embedded_application_runner.h"
+#include "content/common/service_manager/embedded_service_runner.h"
#include "content/public/common/content_client.h"
namespace content {
@@ -24,8 +24,8 @@ void ServiceFactory::CreateService(shell::mojom::ServiceRequest request,
ServiceMap services;
RegisterServices(&services);
for (const auto& service : services) {
- std::unique_ptr<EmbeddedApplicationRunner> runner(
- new EmbeddedApplicationRunner(service.first, service.second));
+ std::unique_ptr<EmbeddedServiceRunner> runner(
+ new EmbeddedServiceRunner(service.first, service.second));
runner->SetQuitClosure(base::Bind(&ServiceFactory::OnServiceQuit,
base::Unretained(this)));
services_.insert(std::make_pair(service.first, std::move(runner)));
« no previous file with comments | « content/child/service_factory.h ('k') | content/common/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698