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

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

Issue 2528743002: Shape Detection: Implement FaceDetection on Mac as out-of-process service (Closed)
Patch Set: Rebase Created 3 years, 11 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 | « content/public/app/BUILD.gn ('k') | content/utility/BUILD.gn » ('j') | 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 "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 "plugin": [ 7 "plugin": [
8 "discardable_memory::mojom::DiscardableSharedMemoryManager", 8 "discardable_memory::mojom::DiscardableSharedMemoryManager",
9 "ui::mojom::Gpu" 9 "ui::mojom::Gpu"
10 ], 10 ],
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 "content_gpu": [ "browser" ], 50 "content_gpu": [ "browser" ],
51 "content_plugin": [ "browser" ], 51 "content_plugin": [ "browser" ],
52 "content_renderer": [ "browser" ], 52 "content_renderer": [ "browser" ],
53 "content_utility": [ "browser" ], 53 "content_utility": [ "browser" ],
54 "service_manager": [ 54 "service_manager": [
55 "service_manager:client_process", 55 "service_manager:client_process",
56 "service_manager:instance_name", 56 "service_manager:instance_name",
57 "service_manager:user_id" 57 "service_manager:user_id"
58 ], 58 ],
59 "file": [ "file:filesystem", "file:leveldb" ], 59 "file": [ "file:filesystem", "file:leveldb" ],
60 "media": [ "media:media" ] 60 "media": [ "media:media" ],
61 "shape_detection": [
62 "barcode_detection",
63 "face_detection"
64 ]
61 } 65 }
62 }, 66 },
63 "navigation:frame": { 67 "navigation:frame": {
64 "provides": { 68 "provides": {
65 "renderer": [ 69 "renderer": [
66 // TODO(beng): these belong in //chrome's overlay, but there are some 70 // TODO(beng): these belong in //chrome's overlay, but there are some
67 // issues with mash browser_tests's manifest config that make this 71 // issues with mash browser_tests's manifest config that make this
68 // impossible this week. Remove once sky/ken fix this. 72 // impossible this week. Remove once sky/ken fix this.
69 "autofill::mojom::AutofillDriver", 73 "autofill::mojom::AutofillDriver",
70 "autofill::mojom::PasswordManagerDriver", 74 "autofill::mojom::PasswordManagerDriver",
(...skipping 20 matching lines...) Expand all
91 "payments::mojom::PaymentRequest", 95 "payments::mojom::PaymentRequest",
92 "ui::mojom::Gpu" 96 "ui::mojom::Gpu"
93 ] 97 ]
94 }, 98 },
95 "requires": { 99 "requires": {
96 "content_renderer": [ "browser" ] 100 "content_renderer": [ "browser" ]
97 } 101 }
98 } 102 }
99 } 103 }
100 } 104 }
OLDNEW
« no previous file with comments | « content/public/app/BUILD.gn ('k') | content/utility/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698