| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 module content.mojom; | 5 module content.mojom; |
| 6 | 6 |
| 7 // The default service name the browser identifies as when connecting to | 7 // The default service name the browser identifies as when connecting to |
| 8 // the Service Manager. This must match the name in | 8 // the Service Manager. This must match the name in |
| 9 // src/content/public/app/mojo/content_browser_manifest.json. | 9 // src/content/public/app/mojo/content_browser_manifest.json. |
| 10 const string kBrowserServiceName = "content_browser"; | 10 const string kBrowserServiceName = "content_browser"; |
| 11 | 11 |
| 12 // The default service name used to identify the gpu process when connecting it | 12 // The default service name used to identify the gpu process when connecting it |
| 13 // to the Service Manager. This must match the name in | 13 // to the Service Manager. This must match the name in |
| 14 // src/content/public/app/mojo/content_gpu_manifest.json. | 14 // src/content/public/app/mojo/content_gpu_manifest.json. |
| 15 const string kGpuServiceName = "content_gpu"; | 15 const string kGpuServiceName = "content_gpu"; |
| 16 | 16 |
| 17 // The service name used to identify the browser process's singleton service |
| 18 // instance which packages other browser-wide services. this must match the name |
| 19 // in src/content/public/app/mojo/content_packaged_services_manifest.json. |
| 20 const string kPackagedServicesServiceName = "content_packaged_services"; |
| 21 |
| 17 // The default service name used to identify plugin processes when connecting | 22 // The default service name used to identify plugin processes when connecting |
| 18 // them to the Service Manager. This must match the name in | 23 // them to the Service Manager. This must match the name in |
| 19 // src/content/public/app/mojo/content_plugin_manifest.json. | 24 // src/content/public/app/mojo/content_plugin_manifest.json. |
| 20 const string kPluginServiceName = "content_plugin"; | 25 const string kPluginServiceName = "content_plugin"; |
| 21 | 26 |
| 22 // The default service name used to identify render processes when connecting | 27 // The default service name used to identify render processes when connecting |
| 23 // them to the Service Manager. This must match the name in | 28 // them to the Service Manager. This must match the name in |
| 24 // src/content/public/app/mojo/content_renderer_manifest.json. | 29 // src/content/public/app/mojo/content_renderer_manifest.json. |
| 25 const string kRendererServiceName = "content_renderer"; | 30 const string kRendererServiceName = "content_renderer"; |
| 26 | 31 |
| 27 // The default service name used to identify utility processes when connecting | 32 // The default service name used to identify utility processes when connecting |
| 28 // them to the Service Manager. This must match the name in | 33 // them to the Service Manager. This must match the name in |
| 29 // src/content/public/app/mojo/content_utility_manifest.json. | 34 // src/content/public/app/mojo/content_utility_manifest.json. |
| 30 const string kUtilityServiceName = "content_utility"; | 35 const string kUtilityServiceName = "content_utility"; |
| OLD | NEW |