| Index: chrome/app/mash/mash_runner.cc
|
| diff --git a/chrome/app/mash/mash_runner.cc b/chrome/app/mash/mash_runner.cc
|
| index 950a88665fa1e9992a67c5a96586e1682e02a11d..66185aca97ccb363454dd8967e2a55f3978bae1e 100644
|
| --- a/chrome/app/mash/mash_runner.cc
|
| +++ b/chrome/app/mash/mash_runner.cc
|
| @@ -21,6 +21,7 @@
|
| #include "mash/quick_launch/quick_launch_application.h"
|
| #include "mash/session/session.h"
|
| #include "mash/task_viewer/task_viewer.h"
|
| +#include "mash/touch/touch_hud_application.h"
|
| #include "mojo/public/cpp/bindings/binding_set.h"
|
| #include "services/shell/background/background_shell.h"
|
| #include "services/shell/native_runner_delegate.h"
|
| @@ -96,6 +97,8 @@ class DefaultShellClient : public shell::ShellClient,
|
| return base::WrapUnique(new mash::quick_launch::QuickLaunchApplication);
|
| if (name == "mojo:task_viewer")
|
| return base::WrapUnique(new mash::task_viewer::TaskViewer);
|
| + if (name == "mojo:touch")
|
| + return base::WrapUnique(new mash::touch::TouchHudApplication);
|
| #if defined(OS_LINUX)
|
| if (name == "mojo:font_service")
|
| return base::WrapUnique(new font_service::FontServiceApp);
|
|
|