Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(173)

Side by Side Diff: services/ui/manifest.json

Issue 2127383003: mus: Introduce high-contrast mode in mus. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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::InputDeviceServer", 14 "ui::mojom::InputDeviceServer",
15 "ui::mojom::WindowTreeFactory" 15 "ui::mojom::WindowTreeFactory"
16 ], 16 ],
17 "accessibility": [
18 "ui::mojom::AccessibilityManager"
19 ],
17 "test": [ 20 "test": [
18 "ui::mojom::WindowServerTest" 21 "ui::mojom::WindowServerTest"
19 ] 22 ]
20 }, 23 },
21 "required": { 24 "required": {
22 "*": { "classes": [ "app" ] }, 25 "*": { "classes": [ "app" ] },
23 "mojo:shell": { "classes": [ "shell:all_users", "shell:explicit_class" ] } 26 "mojo:shell": { "classes": [ "shell:all_users", "shell:explicit_class" ] }
24 } 27 }
25 } 28 }
26 } 29 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698