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

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

Issue 2832633002: Add PDF compositor service (Closed)
Patch Set: rebase again Created 3 years, 7 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 "name": "content_utility", 2 "name": "content_utility",
3 "display_name": "Content (utility process)", 3 "display_name": "Content (utility process)",
4 "interface_provider_specs": { 4 "interface_provider_specs": {
5 "service_manager:connector": { 5 "service_manager:connector": {
6 "provides": { 6 "provides": {
7 "browser": [ 7 "browser": [
8 "content::mojom::Child", 8 "content::mojom::Child",
9 "IPC::mojom::ChannelBootstrap", 9 "IPC::mojom::ChannelBootstrap",
10 "service_manager::mojom::ServiceFactory" 10 "service_manager::mojom::ServiceFactory"
11 ], 11 ],
12 "service_manager:service_factory": [ 12 "service_manager:service_factory": [
13 "service_manager::mojom::ServiceFactory" 13 "service_manager::mojom::ServiceFactory"
14 ] 14 ]
15 }, 15 },
16 "requires": { 16 "requires": {
17 "content_browser": [ "utility" ], 17 "content_browser": [ "utility" ],
18 "device": [ 18 "device": [
19 "device:power_monitor", 19 "device:power_monitor",
20 "device:time_zone_monitor" 20 "device:time_zone_monitor"
21 ],
22 "content_browser": [
Lei Zhang 2017/04/27 22:42:21 Isn't this the same as line 17?
Wei Li 2017/04/29 04:35:18 Good eyes, someone added before me :)
23 "utility"
21 ] 24 ]
22 } 25 }
23 } 26 }
24 }, 27 },
25 "required_files" : { 28 "required_files" : {
26 "v8_natives_data" : [ 29 "v8_natives_data" : [
27 { 30 {
28 "path": "natives_blob.bin", 31 "path": "natives_blob.bin",
29 "platform": "linux" 32 "platform": "linux"
30 }, 33 },
31 { 34 {
32 "path": "assets/natives_blob.bin", 35 "path": "assets/natives_blob.bin",
33 "platform": "android" 36 "platform": "android"
34 } 37 }
35 ], 38 ],
36 "v8_snapshot_data" : [{ 39 "v8_snapshot_data" : [{
37 "path": "snapshot_blob.bin", 40 "path": "snapshot_blob.bin",
38 "platform": "linux" 41 "platform": "linux"
39 }], 42 }],
40 "v8_snapshot_32_data" : [{ 43 "v8_snapshot_32_data" : [{
41 "path": "assets/snapshot_blob_32.bin", 44 "path": "assets/snapshot_blob_32.bin",
42 "platform": "android" 45 "platform": "android"
43 }], 46 }],
44 "v8_snapshot_64_data" : [{ 47 "v8_snapshot_64_data" : [{
45 "path": "assets/snapshot_blob_64.bin", 48 "path": "assets/snapshot_blob_64.bin",
46 "platform": "android" 49 "platform": "android"
47 }] 50 }]
48 } 51 }
49 } 52 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698