| OLD | NEW |
| 1 { | 1 { |
| 2 "manifest_version": 1, | 2 "manifest_version": 1, |
| 3 "name": "mojo:shell", | 3 "name": "service:shell", |
| 4 "display_name": "Service Manager", | 4 "display_name": "Service Manager", |
| 5 "capabilities": { | 5 "capabilities": { |
| 6 "provided": { | 6 "provided": { |
| 7 // Clients requesting this class are able to connect to other clients as | 7 // Clients requesting this class are able to connect to other clients as |
| 8 // specific users other than their own. | 8 // specific users other than their own. |
| 9 "shell:user_id": [ ], | 9 "shell:user_id": [ ], |
| 10 // Clients requesting this class are allowed to register clients for | 10 // Clients requesting this class are allowed to register clients for |
| 11 // processes they launch themselves. | 11 // processes they launch themselves. |
| 12 "shell:client_process": [ ], | 12 "shell:client_process": [ ], |
| 13 // Clients requesting this class are allowed to connect to other clients | 13 // Clients requesting this class are allowed to connect to other clients |
| 14 // in specific process instance groups. | 14 // in specific process instance groups. |
| 15 "shell:instance_name": [ ], | 15 "shell:instance_name": [ ], |
| 16 // Clients requesting this class are run as a unique user id which is | 16 // Clients requesting this class are run as a unique user id which is |
| 17 // visible to clients run as any user. | 17 // visible to clients run as any user. |
| 18 "shell:all_users": [ ], | 18 "shell:all_users": [ ], |
| 19 "shell:block_wildcard": [ ], | 19 "shell:block_wildcard": [ ], |
| 20 // Clients requesting this class block inbound requests to bind interfaces | 20 // Clients requesting this class block inbound requests to bind interfaces |
| 21 // from other sources who specify wildcard rules in their manifest | 21 // from other sources who specify wildcard rules in their manifest |
| 22 // capability interface sets. | 22 // capability interface sets. |
| 23 "shell:explicit_class": [ ] | 23 "shell:explicit_class": [ ] |
| 24 }, | 24 }, |
| 25 "required": { | 25 "required": { |
| 26 "mojo:shell": { "classes": [ "shell:all_users" ] } | 26 "service:shell": { "classes": [ "shell:all_users" ] } |
| 27 } | 27 } |
| 28 } | 28 } |
| 29 } | 29 } |
| OLD | NEW |