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

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

Issue 2564163003: ShapeDetection: Add ShapeDetectionProvider (Closed)
Patch Set: Created 4 years 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 "device::mojom::PowerMonitor" 8 "device::mojom::PowerMonitor"
9 ], 9 ],
10 "plugin": [ 10 "plugin": [
11 "device::mojom::PowerMonitor", 11 "device::mojom::PowerMonitor",
12 "discardable_memory::mojom::DiscardableSharedMemoryManager" 12 "discardable_memory::mojom::DiscardableSharedMemoryManager"
13 ], 13 ],
14 "renderer": [ 14 "renderer": [
15 "blink::mojom::BackgroundSyncService", 15 "blink::mojom::BackgroundSyncService",
16 "blink::mojom::BarcodeDetection",
Reilly Grant (use Gerrit) 2016/12/10 01:18:22 I don't see a CreateBarcodeDetector method in Shap
xianglu 2016/12/10 02:22:19 Yes. BarcodeDetection is implemented under //chrom
17 "blink::mojom::BroadcastChannelProvider", 16 "blink::mojom::BroadcastChannelProvider",
18 "blink::mojom::BudgetService", 17 "blink::mojom::BudgetService",
19 "blink::mojom::FaceDetection",
20 "blink::mojom::Hyphenation", 18 "blink::mojom::Hyphenation",
21 "blink::mojom::MimeRegistry", 19 "blink::mojom::MimeRegistry",
22 "blink::mojom::NotificationService", 20 "blink::mojom::NotificationService",
23 "blink::mojom::OffscreenCanvasCompositorFrameSinkProvider", 21 "blink::mojom::OffscreenCanvasCompositorFrameSinkProvider",
24 "blink::mojom::OffscreenCanvasSurface", 22 "blink::mojom::OffscreenCanvasSurface",
25 "blink::mojom::PermissionService", 23 "blink::mojom::PermissionService",
26 "blink::mojom::WebSocket", 24 "blink::mojom::WebSocket",
27 "content::mojom::MemoryCoordinatorHandle", 25 "content::mojom::MemoryCoordinatorHandle",
28 "content::mojom::ServiceWorkerDispatcherHost", 26 "content::mojom::ServiceWorkerDispatcherHost",
29 "content::mojom::StoragePartitionService", 27 "content::mojom::StoragePartitionService",
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 }, 62 },
65 "navigation:frame": { 63 "navigation:frame": {
66 "provides": { 64 "provides": {
67 "renderer": [ 65 "renderer": [
68 // TODO(beng): these belong in //chrome's overlay, but there are some 66 // TODO(beng): these belong in //chrome's overlay, but there are some
69 // issues with mash browser_tests's manifest config that make this 67 // issues with mash browser_tests's manifest config that make this
70 // impossible this week. Remove once sky/ken fix this. 68 // impossible this week. Remove once sky/ken fix this.
71 "autofill::mojom::AutofillDriver", 69 "autofill::mojom::AutofillDriver",
72 "autofill::mojom::PasswordManagerDriver", 70 "autofill::mojom::PasswordManagerDriver",
73 "blink::mojom::BarcodeDetection", 71 "blink::mojom::BarcodeDetection",
74 "blink::mojom::FaceDetection",
75 "blink::mojom::MediaSessionService", 72 "blink::mojom::MediaSessionService",
76 "blink::mojom::PermissionService", 73 "blink::mojom::PermissionService",
77 "blink::mojom::PresentationService", 74 "blink::mojom::PresentationService",
78 "blink::mojom::SensitiveInputVisibilityService", 75 "blink::mojom::SensitiveInputVisibilityService",
76 "blink::mojom::ShapeDetectionProvider",
79 "blink::mojom::WebBluetoothService", 77 "blink::mojom::WebBluetoothService",
80 "blink::mojom::WebSocket", 78 "blink::mojom::WebSocket",
81 // TODO(beng): figure out how to overlay test interfaces like this. 79 // TODO(beng): figure out how to overlay test interfaces like this.
82 "content::mojom::BrowserTarget", 80 "content::mojom::BrowserTarget",
83 "device::mojom::VRService", 81 "device::mojom::VRService",
84 "device::VibrationManager", 82 "device::VibrationManager",
85 "device::mojom::GeolocationService", 83 "device::mojom::GeolocationService",
86 "device::mojom::SensorProvider", 84 "device::mojom::SensorProvider",
87 "device::mojom::WakeLockService", 85 "device::mojom::WakeLockService",
88 "device::nfc::mojom::NFC", 86 "device::nfc::mojom::NFC",
89 "device::usb::DeviceManager", 87 "device::usb::DeviceManager",
90 "discardable_memory::mojom::DiscardableSharedMemoryManager", 88 "discardable_memory::mojom::DiscardableSharedMemoryManager",
91 "media::mojom::InterfaceFactory", 89 "media::mojom::InterfaceFactory",
92 "media::mojom::RemoterFactory", 90 "media::mojom::RemoterFactory",
93 "media::mojom::Renderer", 91 "media::mojom::Renderer",
94 "mojom::MediaDevicesDispatcherHost", 92 "mojom::MediaDevicesDispatcherHost",
95 "payments::mojom::PaymentRequest" 93 "payments::mojom::PaymentRequest"
96 ] 94 ]
97 }, 95 },
98 "requires": { 96 "requires": {
99 "content_renderer": [ "browser" ] 97 "content_renderer": [ "browser" ]
100 } 98 }
101 } 99 }
102 } 100 }
103 } 101 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698