| Index: ash/mus/accelerators/accelerator_controller_delegate_mus.cc
|
| diff --git a/ash/mus/accelerators/accelerator_controller_delegate_mus.cc b/ash/mus/accelerators/accelerator_controller_delegate_mus.cc
|
| index 07227db57530023f7379a3b0865d47255efe1f67..28e9d97dab94243246238ee4bf0d1015dd0a2b7a 100644
|
| --- a/ash/mus/accelerators/accelerator_controller_delegate_mus.cc
|
| +++ b/ash/mus/accelerators/accelerator_controller_delegate_mus.cc
|
| @@ -53,7 +53,7 @@ bool AcceleratorControllerDelegateMus::HandlesAction(AcceleratorAction action) {
|
| #if defined(OS_CHROMEOS)
|
| case DEV_ADD_REMOVE_DISPLAY: {
|
| display::mojom::DisplayControllerPtr display_controller;
|
| - connector_->ConnectToInterface("mojo:ui", &display_controller);
|
| + connector_->ConnectToInterface("service:ui", &display_controller);
|
| display_controller->ToggleVirtualDisplay();
|
| return true;
|
| }
|
| @@ -71,7 +71,7 @@ bool AcceleratorControllerDelegateMus::HandlesAction(AcceleratorAction action) {
|
| return false;
|
| case TOUCH_HUD_PROJECTION_TOGGLE: {
|
| mash::mojom::LaunchablePtr launchable;
|
| - connector_->ConnectToInterface("mojo:touch_hud", &launchable);
|
| + connector_->ConnectToInterface("service:touch_hud", &launchable);
|
| launchable->Launch(mash::mojom::kWindow,
|
| mash::mojom::LaunchMode::DEFAULT);
|
| return true;
|
|
|