| Index: mash/package/mash_packaged_service.cc
|
| diff --git a/mash/package/mash_packaged_service.cc b/mash/package/mash_packaged_service.cc
|
| index 0cb24c03088fd43d4c49b0cbb0d24c1970d609ea..0120af602a1a3094a60ee7afa88e2e2683d8c914 100644
|
| --- a/mash/package/mash_packaged_service.cc
|
| +++ b/mash/package/mash_packaged_service.cc
|
| @@ -4,6 +4,7 @@
|
|
|
| #include "mash/package/mash_packaged_service.h"
|
|
|
| +#include "ash/autoclick/mus/autoclick_application.h"
|
| #include "ash/mus/window_manager_application.h"
|
| #include "ash/touch_hud/mus/touch_hud_application.h"
|
| #include "mash/app_driver/app_driver.h"
|
| @@ -56,6 +57,8 @@ std::unique_ptr<shell::Service> MashPackagedService::CreateService(
|
| const std::string& name) {
|
| if (name == "mojo:ash")
|
| return base::WrapUnique(new ash::mus::WindowManagerApplication);
|
| + if (name == "mojo:accessibility_autoclick")
|
| + return base::WrapUnique(new ash::autoclick::AutoclickApplication);
|
| if (name == "mojo:touch_hud")
|
| return base::WrapUnique(new ash::touch_hud::TouchHudApplication);
|
| if (name == "mojo:mash_session")
|
|
|