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

Unified Diff: ash/mus/main.cc

Issue 2840043003: chromeos: Makes mushrome use simplified display management (Closed)
Patch Set: merge Created 3 years, 8 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 | « ash/mus/bridge/shell_port_mash.cc ('k') | ash/mus/test/ash_test_impl_mus.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/mus/main.cc
diff --git a/ash/mus/main.cc b/ash/mus/main.cc
index e3aa4deb0463016855466afdf1b534f36a3a4d77..d152d516ddae2b8e4971ac774340d77210a75e62 100644
--- a/ash/mus/main.cc
+++ b/ash/mus/main.cc
@@ -7,6 +7,9 @@
#include "services/service_manager/public/cpp/service_runner.h"
MojoResult ServiceMain(MojoHandle service_request_handle) {
- service_manager::ServiceRunner runner(new ash::mus::WindowManagerApplication);
+ const bool show_primary_host_on_connect = true;
+ ash::mus::WindowManagerApplication* app =
+ new ash::mus::WindowManagerApplication(show_primary_host_on_connect);
+ service_manager::ServiceRunner runner(app);
return runner.Run(service_request_handle);
}
« no previous file with comments | « ash/mus/bridge/shell_port_mash.cc ('k') | ash/mus/test/ash_test_impl_mus.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698