| OLD | NEW |
| 1 { | 1 { |
| 2 "manifest_version": 1, | 2 "manifest_version": 1, |
| 3 "name": "service:shell", | 3 "name": "service:service_manager", |
| 4 "display_name": "Service Manager", | 4 "display_name": "Service Manager", |
| 5 "capabilities": { | 5 "capabilities": { |
| 6 // NOTE: This manifest is for documentation purposes only. Relevant | 6 // NOTE: This manifest is for documentation purposes only. Relevant |
| 7 // capability spec is defined inline in the ServiceManager implementation. | 7 // capability spec is defined inline in the ServiceManager implementation. |
| 8 // | 8 // |
| 9 // TODO(rockot): Fix this. We can bake this file into ServiceManager at | 9 // TODO(rockot): Fix this. We can bake this file into ServiceManager at |
| 10 // build time or something. Same with service:catalog. | 10 // build time or something. Same with service:catalog. |
| 11 "provided": { | 11 "provided": { |
| 12 // Clients requesting this class are able to connect to other clients as | 12 // Clients requesting this class are able to connect to other clients as |
| 13 // specific users other than their own. | 13 // specific users other than their own. |
| 14 "shell:user_id": [ ], | 14 "service_manager:user_id": [ ], |
| 15 // Clients requesting this class are allowed to register clients for | 15 // Clients requesting this class are allowed to register clients for |
| 16 // processes they launch themselves. | 16 // processes they launch themselves. |
| 17 "shell:client_process": [ ], | 17 "service_manager:client_process": [ ], |
| 18 // Clients requesting this class are allowed to connect to other clients | 18 // Clients requesting this class are allowed to connect to other clients |
| 19 // in specific process instance groups. | 19 // in specific process instance groups. |
| 20 "shell:instance_name": [ ], | 20 "service_manager:instance_name": [ ], |
| 21 // Clients requesting this class are run as a unique user id which is | 21 // Clients requesting this class are run as a unique user id which is |
| 22 // visible to clients run as any user. | 22 // visible to clients run as any user. |
| 23 "shell:all_users": [ ], | 23 "service_manager:all_users": [ ], |
| 24 "shell:block_wildcard": [ ], | 24 "service_manager:block_wildcard": [ ], |
| 25 // Clients requesting this class block inbound requests to bind interfaces | 25 // Clients requesting this class block inbound requests to bind interfaces |
| 26 // from other sources who specify wildcard rules in their manifest | 26 // from other sources who specify wildcard rules in their manifest |
| 27 // capability interface sets. | 27 // capability interface sets. |
| 28 "shell:explicit_class": [ ], | 28 "service_manager:explicit_class": [ ], |
| 29 | 29 |
| 30 "shell:service_manager": [ "service_manager::mojom::ServiceManager" ] | 30 "service_manager:service_manager": [ |
| 31 "service_manager::mojom::ServiceManager" |
| 32 ] |
| 31 }, | 33 }, |
| 32 "required": { | 34 "required": { |
| 33 "service:shell": [ "shell:all_users" ] | 35 "service:service_manager": [ "service_manager:all_users" ] |
| 34 } | 36 } |
| 35 } | 37 } |
| 36 } | 38 } |
| OLD | NEW |