Chromium Code Reviews| 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") |
|
sky
2016/09/12 17:28:09
Please add a comment to see header for details on
riajiang
2016/09/12 17:36:45
Done.
|
| 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") |