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

Unified Diff: mash/package/mash_packaged_service.cc

Issue 2470383002: Add catalog_viewer to mash_packaged_service. (Closed)
Patch Set: some cleanup. Created 4 years, 1 month 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/BUILD.gn ('k') | no next file » | 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 b3cafe235415cf5a361fcf60a164fe0c29ac807a..9f125a43022d932c2311e0486639805ad756726c 100644
--- a/mash/package/mash_packaged_service.cc
+++ b/mash/package/mash_packaged_service.cc
@@ -7,6 +7,7 @@
#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/catalog_viewer/catalog_viewer.h"
#include "mash/quick_launch/quick_launch.h"
#include "mash/session/session.h"
#include "mash/task_viewer/task_viewer.h"
@@ -61,6 +62,8 @@ std::unique_ptr<service_manager::Service> MashPackagedService::CreateService(
return base::WrapUnique(new ash::mus::WindowManagerApplication);
if (name == "service:accessibility_autoclick")
return base::WrapUnique(new ash::autoclick::AutoclickApplication);
+ if (name == "service:catalog_viewer")
+ return base::WrapUnique(new mash::catalog_viewer::CatalogViewer);
if (name == "service:touch_hud")
return base::WrapUnique(new ash::touch_hud::TouchHudApplication);
if (name == "service:mash_session")
« no previous file with comments | « mash/package/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698