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

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

Issue 2975683002: Add GeolocationManager service (Closed)
Patch Set: Fix Windows dll-interface problem Created 3 years, 5 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 28 matching lines...) Expand all
39 "discardable_memory::mojom::DiscardableSharedMemoryManager", 39 "discardable_memory::mojom::DiscardableSharedMemoryManager",
40 "memory_coordinator::mojom::MemoryCoordinatorHandle", 40 "memory_coordinator::mojom::MemoryCoordinatorHandle",
41 "metrics::mojom::SingleSampleMetricsProvider", 41 "metrics::mojom::SingleSampleMetricsProvider",
42 "payments::mojom::PaymentManager", 42 "payments::mojom::PaymentManager",
43 "shape_detection::mojom::BarcodeDetection", 43 "shape_detection::mojom::BarcodeDetection",
44 "shape_detection::mojom::FaceDetectionProvider", 44 "shape_detection::mojom::FaceDetectionProvider",
45 "resource_coordinator::mojom::CoordinationUnit", 45 "resource_coordinator::mojom::CoordinationUnit",
46 "shape_detection::mojom::TextDetection", 46 "shape_detection::mojom::TextDetection",
47 "ui::mojom::Gpu" 47 "ui::mojom::Gpu"
48 ], 48 ],
49 "geolocation_manager": [
Ken Rockot(use gerrit already) 2017/07/10 19:38:55 geolocation_config?
asimjour1 2017/07/10 20:45:50 Done.
50 "device::mojom::GeolocationManager"
51 ],
49 "service_manager:service_factory": [ 52 "service_manager:service_factory": [
50 "service_manager::mojom::ServiceFactory" 53 "service_manager::mojom::ServiceFactory"
51 ], 54 ],
52 "utility": [ 55 "utility": [
53 "discardable_memory::mojom::DiscardableSharedMemoryManager", 56 "discardable_memory::mojom::DiscardableSharedMemoryManager",
54 "memory_instrumentation::mojom::Coordinator" 57 "memory_instrumentation::mojom::Coordinator"
55 ] 58 ]
56 }, 59 },
57 "requires": { 60 "requires": {
58 "*": [ "app" ], 61 "*": [ "app" ],
59 // In classic ash, the browser supplies ash interfaces to itself. 62 // In classic ash, the browser supplies ash interfaces to itself.
60 "content_browser": [ "ash", "display", "memory_instrumentation", "url_ke yed_metrics" ], 63 "content_browser": [
64 "ash",
65 "display",
66 "memory_instrumentation",
67 "url_keyed_metrics",
68 "geolocation_manager"
69 ],
61 "content_gpu": [ "browser" ], 70 "content_gpu": [ "browser" ],
62 "content_plugin": [ "browser" ], 71 "content_plugin": [ "browser" ],
63 "content_renderer": [ "browser" ], 72 "content_renderer": [ "browser" ],
64 "content_utility": [ "browser" ], 73 "content_utility": [ "browser" ],
65 "data_decoder": [ "image_decoder" ], 74 "data_decoder": [ "image_decoder" ],
66 "device": [ "device:nfc", "device:wake_lock" ], 75 "device": [ "device:nfc", "device:wake_lock" ],
67 "file": [ "file:filesystem", "file:leveldb" ], 76 "file": [ "file:filesystem", "file:leveldb" ],
68 "media": [ "media:media" ], 77 "media": [ "media:media" ],
69 "network": [ 78 "network": [
70 "network_service", 79 "network_service",
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 "ui::mojom::Gpu", 134 "ui::mojom::Gpu",
126 "webauth::mojom::Authenticator" 135 "webauth::mojom::Authenticator"
127 ] 136 ]
128 }, 137 },
129 "requires": { 138 "requires": {
130 "content_renderer": [ "browser" ] 139 "content_renderer": [ "browser" ]
131 } 140 }
132 } 141 }
133 } 142 }
134 } 143 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698