| OLD | NEW |
| 1 { | 1 { |
| 2 "manifest_version": 1, | 2 "manifest_version": 1, |
| 3 "name": "mojo:ui", | 3 "name": "mojo:ui", |
| 4 "display_name": "UI Service", | 4 "display_name": "UI Service", |
| 5 "capabilities": { | 5 "capabilities": { |
| 6 "provided": { | 6 "provided": { |
| 7 // A collection of interfaces needed by a generic client of mus. | 7 // A collection of interfaces needed by a generic client of mus. |
| 8 // Additional interfaces may be requested a-la-carte. | 8 // Additional interfaces may be requested a-la-carte. |
| 9 "app": [ | 9 "app": [ |
| 10 "ui::mojom::Clipboard", | 10 "ui::mojom::Clipboard", |
| 11 "ui::mojom::DisplayManager", | 11 "ui::mojom::DisplayManager", |
| 12 "ui::mojom::Gpu", | 12 "ui::mojom::Gpu", |
| 13 "ui::mojom::GpuService", | 13 "ui::mojom::GpuService", |
| 14 "ui::mojom::IMEServer", | 14 "ui::mojom::IMEServer", |
| 15 "ui::mojom::InputDeviceServer", | 15 "ui::mojom::InputDeviceServer", |
| 16 "ui::mojom::WindowTreeFactory" | 16 "ui::mojom::WindowTreeFactory" |
| 17 ], | 17 ], |
| 18 // Interfaces provided by mus-gpu for mus-ws. | 18 // Interfaces provided by mus-gpu for mus-ws. |
| 19 "ozone": [ | 19 "ozone": [ |
| 20 "ui::ozone::mojom::DeviceCursor" | 20 "ui::ozone::mojom::DeviceCursor" |
| 21 ], | 21 ], |
| 22 "test": [ | 22 "test": [ |
| 23 "ui::mojom::WindowServerTest" | 23 "ui::mojom::WindowServerTest" |
| 24 ] | 24 ] |
| 25 }, | 25 }, |
| 26 "required": { | 26 "required": { |
| 27 "mojo:ui": { "classes": [ "ozone" ] }, | 27 "mojo:ui": { "classes": [ "ozone" ] }, |
| 28 "*": { "classes": [ "app" ] }, | 28 "*": { "classes": [ "app" ] }, |
| 29 "mojo:shell": { "classes": [ "shell:all_users", "shell:explicit_class" ] } | 29 "mojo:shell": { |
| 30 "classes": [ |
| 31 "shell:all_users", |
| 32 "shell:explicit_class", |
| 33 "shell:unsandboxed" |
| 34 ] |
| 35 } |
| 30 } | 36 } |
| 31 } | 37 } |
| 32 } | 38 } |
| OLD | NEW |