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

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

Issue 2867213004: [Mojo Video Capture] Hook up video capture service behind a feature flag (Closed)
Patch Set: Fix mojo::MakeRequest(&device) happening after base::Passed(&device). Created 3 years, 7 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 "memory_instrumentation::mojom::Coordinator" 10 "memory_instrumentation::mojom::Coordinator"
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 "ui": [ "display_output_protection" ], 71 "ui": [ "display_output_protection" ],
72 "service_manager": [ 72 "service_manager": [
73 "service_manager:client_process", 73 "service_manager:client_process",
74 "service_manager:instance_name", 74 "service_manager:instance_name",
75 "service_manager:user_id" 75 "service_manager:user_id"
76 ], 76 ],
77 "shape_detection": [ 77 "shape_detection": [
78 "barcode_detection", 78 "barcode_detection",
79 "face_detection", 79 "face_detection",
80 "text_detection" 80 "text_detection"
81 ] 81 ],
82 "video_capture": [ "production" ]
mcasas 2017/05/10 02:33:33 "Production" ?
chfremer 2017/05/10 17:59:40 Is this about upper-case vs. lower-case? It seems
mcasas 2017/05/10 18:15:44 My concern is that "production" does not seem to c
chfremer 2017/05/10 21:08:05 Done.
82 } 83 }
83 }, 84 },
84 "navigation:frame": { 85 "navigation:frame": {
85 "provides": { 86 "provides": {
86 "renderer": [ 87 "renderer": [
87 // TODO(beng): these belong in //chrome's overlay, but there are some 88 // TODO(beng): these belong in //chrome's overlay, but there are some
88 // issues with mash browser_tests's manifest config that make this 89 // issues with mash browser_tests's manifest config that make this
89 // impossible this week. Remove once sky/ken fix this. 90 // impossible this week. Remove once sky/ken fix this.
90 "autofill::mojom::AutofillDriver", 91 "autofill::mojom::AutofillDriver",
91 "autofill::mojom::PasswordManagerDriver", 92 "autofill::mojom::PasswordManagerDriver",
(...skipping 19 matching lines...) Expand all
111 "payments::mojom::PaymentRequest", 112 "payments::mojom::PaymentRequest",
112 "ui::mojom::Gpu" 113 "ui::mojom::Gpu"
113 ] 114 ]
114 }, 115 },
115 "requires": { 116 "requires": {
116 "content_renderer": [ "browser" ] 117 "content_renderer": [ "browser" ]
117 } 118 }
118 } 119 }
119 } 120 }
120 } 121 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698