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

Unified Diff: mash/package/mash_packaged_service.cc

Issue 2230393002: IME for Mus: Make InputMethodMus use the IME Mojo API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update mash_browser_tests_manifest. Created 4 years, 4 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 | « mash/package/DEPS ('k') | services/ui/ime/ime_server_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mash/package/mash_packaged_service.cc
diff --git a/mash/package/mash_packaged_service.cc b/mash/package/mash_packaged_service.cc
index 9e903e497f25e48e3640e49435a3ad30ec5d3b39..0cb24c03088fd43d4c49b0cbb0d24c1970d609ea 100644
--- a/mash/package/mash_packaged_service.cc
+++ b/mash/package/mash_packaged_service.cc
@@ -11,6 +11,7 @@
#include "mash/session/session.h"
#include "mash/task_viewer/task_viewer.h"
#include "services/shell/public/cpp/service_context.h"
+#include "services/ui/ime/test_ime_driver/test_ime_application.h"
#include "services/ui/service.h"
#if defined(OS_LINUX)
@@ -65,6 +66,8 @@ std::unique_ptr<shell::Service> MashPackagedService::CreateService(
return base::WrapUnique(new mash::quick_launch::QuickLaunch);
if (name == "mojo:task_viewer")
return base::WrapUnique(new mash::task_viewer::TaskViewer);
+ if (name == "mojo:test_ime_driver")
+ return base::WrapUnique(new ui::test::TestIMEApplication);
#if defined(OS_LINUX)
if (name == "mojo:font_service")
return base::WrapUnique(new font_service::FontServiceApp);
« no previous file with comments | « mash/package/DEPS ('k') | services/ui/ime/ime_server_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698