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

Unified Diff: services/service_manager/manifest.json

Issue 2427443002: Replace remaining shell references with service manager (Closed)
Patch Set: Created 4 years, 2 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
Index: services/service_manager/manifest.json
diff --git a/services/service_manager/manifest.json b/services/service_manager/manifest.json
index dd7eb23e0ad8d8c8116a4d55565572cb3133bda2..0d34e24ccc589f2b7d05e2c21a81eaa941d102ee 100644
--- a/services/service_manager/manifest.json
+++ b/services/service_manager/manifest.json
@@ -1,6 +1,6 @@
{
"manifest_version": 1,
- "name": "service:shell",
+ "name": "service:service_manager",
"display_name": "Service Manager",
"capabilities": {
// NOTE: This manifest is for documentation purposes only. Relevant
@@ -11,26 +11,28 @@
"provided": {
// Clients requesting this class are able to connect to other clients as
// specific users other than their own.
- "shell:user_id": [ ],
+ "service_manager:user_id": [ ],
// Clients requesting this class are allowed to register clients for
// processes they launch themselves.
- "shell:client_process": [ ],
+ "service_manager:client_process": [ ],
// Clients requesting this class are allowed to connect to other clients
// in specific process instance groups.
- "shell:instance_name": [ ],
+ "service_manager:instance_name": [ ],
// Clients requesting this class are run as a unique user id which is
// visible to clients run as any user.
- "shell:all_users": [ ],
- "shell:block_wildcard": [ ],
+ "service_manager:all_users": [ ],
+ "service_manager:block_wildcard": [ ],
// Clients requesting this class block inbound requests to bind interfaces
// from other sources who specify wildcard rules in their manifest
// capability interface sets.
- "shell:explicit_class": [ ],
+ "service_manager:explicit_class": [ ],
- "shell:service_manager": [ "service_manager::mojom::ServiceManager" ]
+ "service_manager:service_manager": [
+ "service_manager::mojom::ServiceManager"
+ ]
},
"required": {
- "service:shell": [ "shell:all_users" ]
+ "service:service_manager": [ "service_manager:all_users" ]
}
}
}
« no previous file with comments | « services/service_manager/background/tests/test_service_manifest.json ('k') | services/service_manager/native_runner.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698