| 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 18 matching lines...) Expand all Loading... |
| 29 GURL("mojo:network_service"), GURL("mojo:core_services"), "Network"); | 29 GURL("mojo:network_service"), GURL("mojo:core_services"), "Network"); |
| 30 manager->RegisterApplicationPackageAlias( | 30 manager->RegisterApplicationPackageAlias( |
| 31 GURL("mojo:resource_provider"), GURL("mojo:core_services"), "Core"); | 31 GURL("mojo:resource_provider"), GURL("mojo:core_services"), "Core"); |
| 32 #endif | 32 #endif |
| 33 | 33 |
| 34 #if defined(USE_AURA) | 34 #if defined(USE_AURA) |
| 35 manager->RegisterApplicationPackageAlias( | 35 manager->RegisterApplicationPackageAlias( |
| 36 GURL("mojo:omnibox"), GURL("mojo:core_services"), "Core"); | 36 GURL("mojo:omnibox"), GURL("mojo:core_services"), "Core"); |
| 37 #endif | 37 #endif |
| 38 manager->RegisterApplicationPackageAlias( | 38 manager->RegisterApplicationPackageAlias( |
| 39 GURL("mojo:surfaces_service"), GURL("mojo:core_services"), "Surfaces"); | |
| 40 manager->RegisterApplicationPackageAlias( | |
| 41 GURL("mojo:tracing"), GURL("mojo:core_services"), "Sandboxed Core"); | 39 GURL("mojo:tracing"), GURL("mojo:core_services"), "Sandboxed Core"); |
| 42 manager->RegisterApplicationPackageAlias(GURL("mojo:browser"), | 40 manager->RegisterApplicationPackageAlias(GURL("mojo:browser"), |
| 43 GURL("mojo:core_services"), "Core"); | 41 GURL("mojo:core_services"), "Core"); |
| 44 } | 42 } |
| 45 | 43 |
| 46 } // namespace mandoline | 44 } // namespace mandoline |
| OLD | NEW |