Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 { | 1 { |
| 2 "name": "ui", | 2 "name": "ui", |
| 3 "display_name": "UI Service", | 3 "display_name": "UI Service", |
| 4 "interface_provider_specs": { | 4 "interface_provider_specs": { |
| 5 "service_manager:connector": { | 5 "service_manager:connector": { |
| 6 "provides": { | 6 "provides": { |
| 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 // NOTE: when adding a new interface chances are you will want to add it | 9 // NOTE: when adding a new interface chances are you will want to add it |
| 10 // to window_manager as well. | 10 // to window_manager as well. |
| 11 "app": [ | 11 "app": [ |
| 12 "discardable_memory::mojom::DiscardableSharedMemoryManager", | 12 "discardable_memory::mojom::DiscardableSharedMemoryManager", |
| 13 "display::mojom::OutputProtection", | |
|
sky
2017/02/13 23:26:00
This interface seems different from the rest in th
Peng
2017/02/14 16:16:55
Done.
| |
| 13 "ui::mojom::Clipboard", | 14 "ui::mojom::Clipboard", |
| 14 "ui::mojom::DisplayCompositor", | 15 "ui::mojom::DisplayCompositor", |
| 15 "ui::mojom::DisplayManager", | 16 "ui::mojom::DisplayManager", |
| 16 "ui::mojom::Gpu", | 17 "ui::mojom::Gpu", |
| 17 "ui::mojom::IMEServer", | 18 "ui::mojom::IMEServer", |
| 18 "ui::mojom::InputDeviceServer", | 19 "ui::mojom::InputDeviceServer", |
| 19 "ui::mojom::WindowTreeFactory" | 20 "ui::mojom::WindowTreeFactory" |
| 20 ], | 21 ], |
| 21 // Interfaces provided by mus-gpu for mus-ws. | 22 // Interfaces provided by mus-gpu for mus-ws. |
| 22 "ozone": [ | 23 "ozone": [ |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 62 }, | 63 }, |
| 63 "requires": { | 64 "requires": { |
| 64 "*": [ "app" ], | 65 "*": [ "app" ], |
| 65 "catalog": [ "app" ], | 66 "catalog": [ "app" ], |
| 66 "service_manager": [ "service_manager:all_users" ], | 67 "service_manager": [ "service_manager:all_users" ], |
| 67 "ui": [ "ozone" ] | 68 "ui": [ "ozone" ] |
| 68 } | 69 } |
| 69 } | 70 } |
| 70 } | 71 } |
| 71 } | 72 } |
| OLD | NEW |