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

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

Issue 2916823002: Move Mus into chrome's process when running with --mus.
Patch Set: Undo Screen TLS change, don't use Screen::GetScreen() in Mus. Created 3 years, 6 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
Index: chrome/app/mash/embedded_services.cc
diff --git a/chrome/app/mash/embedded_services.cc b/chrome/app/mash/embedded_services.cc
index 88f5152aa5fd36d5c32dbd3811331f2fb8c7487d..090ce3fcd2d7ece372b44bd8a4743dcc460c449c 100644
--- a/chrome/app/mash/embedded_services.cc
+++ b/chrome/app/mash/embedded_services.cc
@@ -46,7 +46,7 @@ std::unique_ptr<service_manager::Service> CreateEmbeddedMashService(
if (service_name == mash::session::mojom::kServiceName)
return base::MakeUnique<mash::session::Session>();
if (service_name == ui::mojom::kServiceName)
- return base::MakeUnique<ui::Service>();
+ return base::MakeUnique<ui::Service>(nullptr, nullptr);
if (service_name == mash::quick_launch::mojom::kServiceName)
return base::MakeUnique<mash::quick_launch::QuickLaunch>();
if (service_name == mash::task_viewer::mojom::kServiceName)

Powered by Google App Engine
This is Rietveld 408576698