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

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

Issue 2338793003: services/shell: Turn on sandboxing for mojo apps.
Patch Set: . Created 4 years, 3 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
« no previous file with comments | « services/shell/service_manager.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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::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 }
OLDNEW
« no previous file with comments | « services/shell/service_manager.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698