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

Side by Side Diff: content/public/app/mojo/content_browser_manifest.json

Issue 2381753002: Use mojo SystemTray interfaces for both mash and classic ash (Closed)
Patch Set: Restructure based on feedback Created 4 years, 2 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": "exe:content_browser", 3 "name": "exe:content_browser",
4 "process-group": "browser", 4 "process-group": "browser",
5 "display_name": "Content Browser", 5 "display_name": "Content Browser",
6 "capabilities": { 6 "capabilities": {
7 // Remove this once http://crbug.com/632818 is fixed. 7 // Remove this once http://crbug.com/632818 is fixed.
8 "provided": { 8 "provided": {
9 "all_interfaces": [ "*" ], 9 "all_interfaces": [ "*" ],
10 "gpu": [ ], 10 "gpu": [ ],
(...skipping 16 matching lines...) Expand all
27 "device::mojom::MotionSensor", 27 "device::mojom::MotionSensor",
28 "device::mojom::OrientationSensor", 28 "device::mojom::OrientationSensor",
29 "device::mojom::TimeZoneMonitor", 29 "device::mojom::TimeZoneMonitor",
30 "media::mojom::ImageCapture", 30 "media::mojom::ImageCapture",
31 "memory_coordinator::mojom::MemoryCoordinatorHandle" 31 "memory_coordinator::mojom::MemoryCoordinatorHandle"
32 ] 32 ]
33 }, 33 },
34 "required": { 34 "required": {
35 "*": { "classes": [ "app" ] }, 35 "*": { "classes": [ "app" ] },
36 36
37 // The browser may connect to itself.
38 "exe:content_browser": { "classes": [ "all_interfaces" ] },
39
37 // We allow the browser to connect to any interfaces exposed by its child 40 // We allow the browser to connect to any interfaces exposed by its child
38 // processes in the "browser" class. 41 // processes in the "browser" class.
39 "exe:content_gpu": { "classes": [ "all_interfaces" ] }, 42 "exe:content_gpu": { "classes": [ "all_interfaces" ] },
40 "exe:content_plugin": { "classes": [ "browser" ] }, 43 "exe:content_plugin": { "classes": [ "browser" ] },
41 "exe:content_renderer": { "classes": [ "browser" ] }, 44 "exe:content_renderer": { "classes": [ "browser" ] },
42 "exe:content_utility": { "classes": [ "browser" ] }, 45 "exe:content_utility": { "classes": [ "browser" ] },
43 46
44 "mojo:shell": { 47 "mojo:shell": {
45 "classes": [ 48 "classes": [
46 "shell:client_process", 49 "shell:client_process",
47 "shell:instance_name", 50 "shell:instance_name",
48 "shell:user_id" 51 "shell:user_id"
49 ] 52 ]
50 }, 53 },
51 "mojo:file": { 54 "mojo:file": {
52 "interfaces": [ 55 "interfaces": [
53 "leveldb::mojom::LevelDBService", 56 "leveldb::mojom::LevelDBService",
54 "user_service::UserService" 57 "user_service::UserService"
55 ] 58 ]
56 }, 59 },
57 "mojo:media": { "classes": [ "all_interfaces" ] } 60 "mojo:media": { "classes": [ "all_interfaces" ] }
58 } 61 }
59 } 62 }
60 } 63 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698