OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "mandoline/app/core_services_initialization.h" | 5 #include "mandoline/app/core_services_initialization.h" |
6 | 6 |
7 #include "mojo/runner/context.h" | 7 #include "mojo/runner/context.h" |
8 | 8 |
9 namespace mandoline { | 9 namespace mandoline { |
10 | 10 |
(...skipping 14 matching lines...) Expand all Loading... |
25 GURL("mojo:network_service"), GURL("mojo:core_services"), "Network"); | 25 GURL("mojo:network_service"), GURL("mojo:core_services"), "Network"); |
26 manager->RegisterApplicationPackageAlias( | 26 manager->RegisterApplicationPackageAlias( |
27 GURL("mojo:resource_provider"), GURL("mojo:core_services"), "Core"); | 27 GURL("mojo:resource_provider"), GURL("mojo:core_services"), "Core"); |
28 #endif | 28 #endif |
29 | 29 |
30 #if defined(USE_AURA) | 30 #if defined(USE_AURA) |
31 manager->RegisterApplicationPackageAlias( | 31 manager->RegisterApplicationPackageAlias( |
32 GURL("mojo:omnibox"), GURL("mojo:core_services"), "Core"); | 32 GURL("mojo:omnibox"), GURL("mojo:core_services"), "Core"); |
33 #endif | 33 #endif |
34 manager->RegisterApplicationPackageAlias( | 34 manager->RegisterApplicationPackageAlias( |
35 GURL("mojo:surfaces_service"), GURL("mojo:core_services"), "Surfaces"); | |
36 manager->RegisterApplicationPackageAlias( | |
37 GURL("mojo:tracing"), GURL("mojo:core_services"), "Sandboxed Core"); | 35 GURL("mojo:tracing"), GURL("mojo:core_services"), "Sandboxed Core"); |
38 manager->RegisterApplicationPackageAlias(GURL("mojo:browser"), | 36 manager->RegisterApplicationPackageAlias(GURL("mojo:browser"), |
39 GURL("mojo:core_services"), "Core"); | 37 GURL("mojo:core_services"), "Core"); |
40 } | 38 } |
41 | 39 |
42 } // namespace mandoline | 40 } // namespace mandoline |
OLD | NEW |