| OLD | NEW |
| 1 { | 1 { |
| 2 "manifest_version": 1, | 2 "manifest_version": 1, |
| 3 "name": "service:catalog", | 3 "name": "service:catalog", |
| 4 "display_name": "Application Resolver", | 4 "display_name": "Application Resolver", |
| 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:shell. | 10 // build time or something. Same with service:service_manager. |
| 11 "provided": { | 11 "provided": { |
| 12 "app": [ "filesystem::mojom::Directory" ], | 12 "app": [ "filesystem::mojom::Directory" ], |
| 13 "control": [ "catalog::mojom::CatalogControl" ] | 13 "control": [ "catalog::mojom::CatalogControl" ] |
| 14 }, | 14 }, |
| 15 "required": { | 15 "required": { |
| 16 "service:shell": [ "shell:all_users", "shell:explicit_class" ] | 16 "service:service_manager": [ |
| 17 "service_manager:all_users", |
| 18 "service_manager:explicit_class" |
| 19 ] |
| 17 } | 20 } |
| 18 } | 21 } |
| 19 } | 22 } |
| OLD | NEW |