Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(421)

Unified Diff: chrome/app/mash/mash_runner.cc

Issue 2092343002: Touch HUD app for mustash (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Change window manager connection unittest to original Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/app/mash/BUILD.gn ('k') | mash/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/app/mash/mash_runner.cc
diff --git a/chrome/app/mash/mash_runner.cc b/chrome/app/mash/mash_runner.cc
index 2d0031978c58b1f30b79619b73d24af0a3a95e53..1df2f55f4a1493119ca73953503375d1b559fded 100644
--- a/chrome/app/mash/mash_runner.cc
+++ b/chrome/app/mash/mash_runner.cc
@@ -20,6 +20,7 @@
#include "mash/quick_launch/quick_launch_application.h"
#include "mash/session/session.h"
#include "mash/task_viewer/task_viewer.h"
+#include "mash/touch_hud/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_hud")
+ return base::WrapUnique(new mash::touch_hud::TouchHudApplication);
#if defined(OS_LINUX)
if (name == "mojo:font_service")
return base::WrapUnique(new font_service::FontServiceApp);
« no previous file with comments | « chrome/app/mash/BUILD.gn ('k') | mash/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698