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

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: Launch shape detection service as a utility process 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
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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 "content_gpu": [ "browser" ], 48 "content_gpu": [ "browser" ],
49 "content_plugin": [ "browser" ], 49 "content_plugin": [ "browser" ],
50 "content_renderer": [ "browser" ], 50 "content_renderer": [ "browser" ],
51 "content_utility": [ "browser" ], 51 "content_utility": [ "browser" ],
52 "service_manager": [ 52 "service_manager": [
53 "service_manager:client_process", 53 "service_manager:client_process",
54 "service_manager:instance_name", 54 "service_manager:instance_name",
55 "service_manager:user_id" 55 "service_manager:user_id"
56 ], 56 ],
57 "file": [ "file:filesystem", "file:leveldb" ], 57 "file": [ "file:filesystem", "file:leveldb" ],
58 "media": [ "media:media" ] 58 "media": [ "media:media" ],
59 "shape_detection": [
60 "barcode_detection",
61 "face_detection"
62 ]
59 } 63 }
60 }, 64 },
61 "navigation:frame": { 65 "navigation:frame": {
62 "provides": { 66 "provides": {
63 "renderer": [ 67 "renderer": [
64 // TODO(beng): these belong in //chrome's overlay, but there are some 68 // TODO(beng): these belong in //chrome's overlay, but there are some
65 // issues with mash browser_tests's manifest config that make this 69 // issues with mash browser_tests's manifest config that make this
66 // impossible this week. Remove once sky/ken fix this. 70 // impossible this week. Remove once sky/ken fix this.
67 "autofill::mojom::AutofillDriver", 71 "autofill::mojom::AutofillDriver",
68 "autofill::mojom::PasswordManagerDriver", 72 "autofill::mojom::PasswordManagerDriver",
(...skipping 23 matching lines...) Expand all
92 "shape_detection::mojom::TextDetection", 96 "shape_detection::mojom::TextDetection",
93 "ui::mojom::Gpu" 97 "ui::mojom::Gpu"
94 ] 98 ]
95 }, 99 },
96 "requires": { 100 "requires": {
97 "content_renderer": [ "browser" ] 101 "content_renderer": [ "browser" ]
98 } 102 }
99 } 103 }
100 } 104 }
101 } 105 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698