| OLD | NEW |
| 1 // NOTE: This overlay is applied to content_browser_manifest.json on top of | 1 // NOTE: This overlay is applied to content_browser_manifest.json on top of |
| 2 // src/chrome/browser/chrome_content_browser_manifest_overlay.json. | 2 // src/chrome/browser/chrome_content_browser_manifest_overlay.json. |
| 3 // | 3 // |
| 4 // The resulting manifest is output to | 4 // The resulting manifest is output to |
| 5 // ${out}/Packages/chrome_mash_content_browser/manifest.json and is used as the | 5 // ${out}/Packages/chrome_mash_content_browser/manifest.json and is used as the |
| 6 // manifest for "service:content_browser" (i.e. the browser process) when Chrome | 6 // manifest for "service:content_browser" (i.e. the browser process) when Chrome |
| 7 // is run in a Mash environment. | 7 // is run in a Mash environment. |
| 8 { | 8 { |
| 9 "interface_provider_specs": { | 9 "interface_provider_specs": { |
| 10 "service_manager:connector": { | 10 "service_manager:connector": { |
| 11 "provides": { | 11 "provides": { |
| 12 "content_browser:ash": [ | 12 "content_browser:ash": [ |
| 13 "ash::mojom::NewWindowClient", |
| 13 "ash::mojom::SystemTrayClient", | 14 "ash::mojom::SystemTrayClient", |
| 14 "ash::mojom::VolumeController", | 15 "ash::mojom::VolumeController", |
| 15 "ash::mojom::WallpaperManager", | 16 "ash::mojom::WallpaperManager", |
| 16 "app_list::mojom::AppListPresenter", | 17 "app_list::mojom::AppListPresenter", |
| 17 "keyboard::mojom::Keyboard" | 18 "keyboard::mojom::Keyboard" |
| 18 ] | 19 ] |
| 19 }, | 20 }, |
| 20 "requires": { | 21 "requires": { |
| 21 "service:ash": [ "ash" ], | 22 "service:ash": [ "ash" ], |
| 22 "service:accessibility_autoclick": [ "ash:autoclick" ], | 23 "service:accessibility_autoclick": [ "ash:autoclick" ], |
| 23 "service:mash_session": [ "app" ] | 24 "service:mash_session": [ "app" ], |
| 25 "service:task_viewer": [ "mash:launchable" ] |
| 24 } | 26 } |
| 25 } | 27 } |
| 26 } | 28 } |
| 27 } | 29 } |
| OLD | NEW |