| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "mash/package/mash_packaged_service.h" | 5 #include "mash/package/mash_packaged_service.h" |
| 6 | 6 |
| 7 #include "ash/autoclick/mus/autoclick_application.h" | 7 #include "ash/autoclick/mus/autoclick_application.h" |
| 8 #include "ash/mus/window_manager_application.h" | 8 #include "ash/mus/window_manager_application.h" |
| 9 #include "ash/touch_hud/mus/touch_hud_application.h" | 9 #include "ash/touch_hud/mus/touch_hud_application.h" |
| 10 #include "mash/app_driver/app_driver.h" | |
| 11 #include "mash/quick_launch/quick_launch.h" | 10 #include "mash/quick_launch/quick_launch.h" |
| 12 #include "mash/session/session.h" | 11 #include "mash/session/session.h" |
| 13 #include "mash/task_viewer/task_viewer.h" | 12 #include "mash/task_viewer/task_viewer.h" |
| 14 #include "services/service_manager/public/cpp/service_context.h" | 13 #include "services/service_manager/public/cpp/service_context.h" |
| 15 #include "services/ui/ime/test_ime_driver/test_ime_application.h" | 14 #include "services/ui/ime/test_ime_driver/test_ime_application.h" |
| 16 #include "services/ui/service.h" | 15 #include "services/ui/service.h" |
| 17 | 16 |
| 18 #if defined(OS_LINUX) | 17 #if defined(OS_LINUX) |
| 19 #include "components/font_service/font_service_app.h" | 18 #include "components/font_service/font_service_app.h" |
| 20 #endif | 19 #endif |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 if (name == "service:quick_launch") | 70 if (name == "service:quick_launch") |
| 72 return base::WrapUnique(new mash::quick_launch::QuickLaunch); | 71 return base::WrapUnique(new mash::quick_launch::QuickLaunch); |
| 73 if (name == "service:task_viewer") | 72 if (name == "service:task_viewer") |
| 74 return base::WrapUnique(new mash::task_viewer::TaskViewer); | 73 return base::WrapUnique(new mash::task_viewer::TaskViewer); |
| 75 if (name == "service:test_ime_driver") | 74 if (name == "service:test_ime_driver") |
| 76 return base::WrapUnique(new ui::test::TestIMEApplication); | 75 return base::WrapUnique(new ui::test::TestIMEApplication); |
| 77 #if defined(OS_LINUX) | 76 #if defined(OS_LINUX) |
| 78 if (name == "service:font_service") | 77 if (name == "service:font_service") |
| 79 return base::WrapUnique(new font_service::FontServiceApp); | 78 return base::WrapUnique(new font_service::FontServiceApp); |
| 80 #endif | 79 #endif |
| 81 if (name == "service:app_driver") | |
| 82 return base::WrapUnique(new mash::app_driver::AppDriver); | |
| 83 return nullptr; | 80 return nullptr; |
| 84 } | 81 } |
| 85 | 82 |
| 86 } // namespace mash | 83 } // namespace mash |
| OLD | NEW |