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 |