Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 { | 1 { |
| 2 "manifest_version": 1, | 2 "manifest_version": 1, |
| 3 "name": "service:ui", | 3 "name": "service:ui", |
| 4 "process-group": "browser", | |
|
rjkroege
2016/10/20 23:29:05
what does this mean?
Jay Civelli
2016/11/02 22:02:17
Process-group is no more (see my comment in servi
| |
| 4 "display_name": "UI Service", | 5 "display_name": "UI Service", |
| 5 "capabilities": { | 6 "capabilities": { |
| 6 "provided": { | 7 "provided": { |
| 7 // A collection of interfaces needed by a generic client of mus. | 8 // A collection of interfaces needed by a generic client of mus. |
| 8 // Additional interfaces may be requested a-la-carte. | 9 // Additional interfaces may be requested a-la-carte. |
| 9 "app": [ | 10 "app": [ |
| 10 "ui::mojom::Clipboard", | 11 "ui::mojom::Clipboard", |
| 11 "ui::mojom::DisplayManager", | 12 "ui::mojom::DisplayManager", |
| 12 "ui::mojom::Gpu", | 13 "ui::mojom::Gpu", |
| 13 "ui::mojom::GpuService", | 14 "ui::mojom::GpuService", |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 45 "required": { | 46 "required": { |
| 46 "*": [ "app" ], | 47 "*": [ "app" ], |
| 47 "service:service_manager": [ | 48 "service:service_manager": [ |
| 48 "service_manager:all_users", | 49 "service_manager:all_users", |
| 49 "service_manager:explicit_class" | 50 "service_manager:explicit_class" |
| 50 ], | 51 ], |
| 51 "service:ui": [ "ozone" ] | 52 "service:ui": [ "ozone" ] |
| 52 } | 53 } |
| 53 } | 54 } |
| 54 } | 55 } |
| OLD | NEW |