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

Unified Diff: mandoline/app/core_services_initialization.cc

Issue 1126393006: core_services: Run different services in different processes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix unit tests by never having an empty qualifier. Created 5 years, 7 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 | « no previous file | mojo/runner/context.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mandoline/app/core_services_initialization.cc
diff --git a/mandoline/app/core_services_initialization.cc b/mandoline/app/core_services_initialization.cc
index 5bdcc400c713a1a8c272e3ef49d81d3ba2c59734..bc27c31c03d4686705270c73448a1a42a341ddf3 100644
--- a/mandoline/app/core_services_initialization.cc
+++ b/mandoline/app/core_services_initialization.cc
@@ -13,17 +13,17 @@ void InitCoreServicesForContext(mojo::runner::Context* context) {
// autogenerated from package manifests.
mojo::shell::ApplicationManager* manager = context->application_manager();
manager->RegisterApplicationPackageAlias(GURL("mojo:clipboard"),
- GURL("mojo:core_services"));
+ GURL("mojo:core_services"), "Core");
#if !defined(OS_ANDROID)
- manager->RegisterApplicationPackageAlias(GURL("mojo:network_service"),
- GURL("mojo:core_services"));
+ manager->RegisterApplicationPackageAlias(
+ GURL("mojo:network_service"), GURL("mojo:core_services"), "Network");
#endif
manager->RegisterApplicationPackageAlias(GURL("mojo:tracing"),
- GURL("mojo:core_services"));
+ GURL("mojo:core_services"), "Core");
manager->RegisterApplicationPackageAlias(GURL("mojo:view_manager"),
- GURL("mojo:core_services"));
+ GURL("mojo:core_services"), "Core");
manager->RegisterApplicationPackageAlias(GURL("mojo:window_manager"),
- GURL("mojo:core_services"));
+ GURL("mojo:core_services"), "Core");
}
} // namespace mandoline
« no previous file with comments | « no previous file | mojo/runner/context.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698