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

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

Issue 2684433003: Files required by a service now listed in manifest. (Closed)
Patch Set: Fixed analysis. Created 3 years, 10 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_renderer", 2 "name": "content_renderer",
3 "display_name": "Content (renderer process)", 3 "display_name": "Content (renderer 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::EmbeddedWorkerInstanceClient", 8 "content::mojom::EmbeddedWorkerInstanceClient",
9 "content::mojom::EmbeddedWorkerSetup", 9 "content::mojom::EmbeddedWorkerSetup",
10 "content::mojom::FrameFactory", 10 "content::mojom::FrameFactory",
(...skipping 25 matching lines...) Expand all
36 "blink::mojom::EngagementClient", 36 "blink::mojom::EngagementClient",
37 "blink::mojom::InstallationService", 37 "blink::mojom::InstallationService",
38 "content::mojom::ImageDownloader", 38 "content::mojom::ImageDownloader",
39 "mojom::MediaDevicesListener" 39 "mojom::MediaDevicesListener"
40 ] 40 ]
41 }, 41 },
42 "requires": { 42 "requires": {
43 "content_browser": [ "renderer" ] 43 "content_browser": [ "renderer" ]
44 } 44 }
45 } 45 }
46 },
47 "required_files" : {
Ken Rockot(use gerrit already) 2017/02/09 17:17:28 I know we use v8 in the utility process sometimes
Jay Civelli 2017/02/09 22:08:27 Ah, right! Done.
48 "v8_natives_data_descriptor" : [
Ken Rockot(use gerrit already) 2017/02/09 17:17:28 nit: maybe as a matter of convention, "descriptor"
Jay Civelli 2017/02/09 22:08:27 Good point, removed.
49 {
50 "path": "natives_blob.bin",
51 "platform": "linux"
52 },
53 {
54 "path": "assets/natives_blob.bin",
55 "platform": "android"
56 }
57 ],
58 "v8_snapshot_data_descriptor" : [{
59 "path": "snapshot_blob.bin",
60 "platform": "linux"
61 }],
62 "v8_snapshot_32_data_descriptor" : [{
63 "path": "assets/snapshot_blob_32.bin",
64 "platform": "android"
65 }],
66 "v8_snapshot_64_data_descriptor" : [{
67 "path": "assets/snapshot_blob_64.bin",
68 "platform": "android"
69 }]
46 } 70 }
47 } 71 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698