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