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

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

Issue 2938443002: [GRC] UKM Support (Closed)
Patch Set: Address reviewer feedback and rebase Created 3 years, 6 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_browser", 2 "name": "content_browser",
3 "display_name": "Content (browser process)", 3 "display_name": "Content (browser process)",
4 "interface_provider_specs": { 4 "interface_provider_specs": {
5 "service_manager:connector": { 5 "service_manager:connector": {
6 "provides": { 6 "provides": {
7 "gpu": [ 7 "gpu": [
8 "content::mojom::FieldTrialRecorder", 8 "content::mojom::FieldTrialRecorder",
9 "media::mojom::AndroidOverlayProvider" 9 "media::mojom::AndroidOverlayProvider"
10 ], 10 ],
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 "service_manager:service_factory": [ 50 "service_manager:service_factory": [
51 "service_manager::mojom::ServiceFactory" 51 "service_manager::mojom::ServiceFactory"
52 ], 52 ],
53 "utility": [ 53 "utility": [
54 "discardable_memory::mojom::DiscardableSharedMemoryManager", 54 "discardable_memory::mojom::DiscardableSharedMemoryManager",
55 "memory_instrumentation::mojom::Coordinator" 55 "memory_instrumentation::mojom::Coordinator"
56 ] 56 ]
57 }, 57 },
58 "requires": { 58 "requires": {
59 "*": [ "app" ], 59 "*": [ "app" ],
60 // TODO(matthalp,oysteine,holte) isolate ukm capabilities from the rende r
dcheng 2017/06/23 16:10:35 Nit: 80 chars please (same below)
matthalp 2017/06/23 16:36:28 Done.
61 // capabilities and then replace the render capabilities with them
60 // In classic ash, the browser supplies ash interfaces to itself. 62 // In classic ash, the browser supplies ash interfaces to itself.
61 "content_browser": [ "ash", "display", "memory_instrumentation" ], 63 "content_browser": [ "ash", "display", "memory_instrumentation", "render er" ],
dcheng 2017/06/23 16:10:35 Maybe we should split the renderer capability to b
matthalp 2017/06/23 16:36:28 holte@ what do you think? I am not sure what entit
Steven Holte 2017/06/23 18:11:02 AFAIK nothing has actually started using the UKM m
62 "content_gpu": [ "browser" ], 64 "content_gpu": [ "browser" ],
63 "content_plugin": [ "browser" ], 65 "content_plugin": [ "browser" ],
64 "content_renderer": [ "browser" ], 66 "content_renderer": [ "browser" ],
65 "content_utility": [ "browser" ], 67 "content_utility": [ "browser" ],
66 "data_decoder": [ "image_decoder" ], 68 "data_decoder": [ "image_decoder" ],
67 "device": [ "device:nfc", "device:wake_lock" ], 69 "device": [ "device:nfc", "device:wake_lock" ],
68 "file": [ "file:filesystem", "file:leveldb" ], 70 "file": [ "file:filesystem", "file:leveldb" ],
69 "media": [ "media:media" ], 71 "media": [ "media:media" ],
70 "network": [ 72 "network": [
71 "network_service", 73 "network_service",
72 "test", 74 "test",
73 "url_loader" 75 "url_loader"
74 ], 76 ],
75 "ui": [ "display_output_protection" ], 77 "ui": [ "display_output_protection" ],
76 "service_manager": [ 78 "service_manager": [
77 "service_manager:client_process", 79 "service_manager:client_process",
78 "service_manager:instance_name", 80 "service_manager:instance_name",
79 "service_manager:service_manager", 81 "service_manager:service_manager",
80 "service_manager:user_id" 82 "service_manager:user_id"
81 ], 83 ],
82 "shape_detection": [ 84 "shape_detection": [
83 "barcode_detection", 85 "barcode_detection",
84 "face_detection", 86 "face_detection",
85 "text_detection" 87 "text_detection"
86
87 ], 88 ],
88 "resource_coordinator": [ "coordination_unit" ], 89 "resource_coordinator": [ "coordination_unit", "service_callbacks" ],
89 "video_capture": [ "capture", "tests" ] 90 "video_capture": [ "capture", "tests" ]
90 } 91 }
91 }, 92 },
92 "navigation:frame": { 93 "navigation:frame": {
93 "provides": { 94 "provides": {
94 "renderer": [ 95 "renderer": [
95 // TODO(beng): these belong in //chrome's overlay, but there are some 96 // TODO(beng): these belong in //chrome's overlay, but there are some
96 // issues with mash browser_tests's manifest config that make this 97 // issues with mash browser_tests's manifest config that make this
97 // impossible this week. Remove once sky/ken fix this. 98 // impossible this week. Remove once sky/ken fix this.
98 "autofill::mojom::AutofillDriver", 99 "autofill::mojom::AutofillDriver",
(...skipping 22 matching lines...) Expand all
121 "resource_coordinator::mojom::CoordinationUnit", 122 "resource_coordinator::mojom::CoordinationUnit",
122 "ui::mojom::Gpu" 123 "ui::mojom::Gpu"
123 ] 124 ]
124 }, 125 },
125 "requires": { 126 "requires": {
126 "content_renderer": [ "browser" ] 127 "content_renderer": [ "browser" ]
127 } 128 }
128 } 129 }
129 } 130 }
130 } 131 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698