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

Unified Diff: chrome/browser/ui/ash/multi_user/multi_user_window_manager.cc

Issue 2835063003: mash: Use ChromeLauncherControllerImpl, remove Mus subclass stub. (Closed)
Patch Set: Add comment and separate mash-only members. 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
Index: chrome/browser/ui/ash/multi_user/multi_user_window_manager.cc
diff --git a/chrome/browser/ui/ash/multi_user/multi_user_window_manager.cc b/chrome/browser/ui/ash/multi_user/multi_user_window_manager.cc
index 9fcf0e8a9024fd428f63b7e86e4d59c76e5f83ad..cfc9964020a8cfa4d9c67defc8cb969141ca1823 100644
--- a/chrome/browser/ui/ash/multi_user/multi_user_window_manager.cc
+++ b/chrome/browser/ui/ash/multi_user/multi_user_window_manager.cc
@@ -9,6 +9,7 @@
#include "ash/shell_delegate.h"
#include "base/logging.h"
#include "build/build_config.h"
+#include "chrome/browser/ui/ash/ash_util.h"
#include "chrome/browser/ui/ash/multi_user/multi_user_window_manager_chromeos.h"
#include "chrome/browser/ui/ash/multi_user/multi_user_window_manager_stub.h"
#include "components/signin/core/account_id/account_id.h"
@@ -37,7 +38,9 @@ MultiUserWindowManager* MultiUserWindowManager::CreateInstance() {
multi_user_mode_ = MULTI_PROFILE_MODE_OFF;
ash::MultiProfileUMA::SessionMode mode =
ash::MultiProfileUMA::SESSION_SINGLE_USER_MODE;
- if (ash::Shell::Get()->shell_delegate()->IsMultiProfilesEnabled()) {
+ // TODO(crbug.com/557406): Enable this component in Mash.
+ if (!ash_util::IsRunningInMash() &&
+ ash::Shell::Get()->shell_delegate()->IsMultiProfilesEnabled()) {
if (!g_instance) {
MultiUserWindowManagerChromeOS* manager =
new MultiUserWindowManagerChromeOS(user_manager::UserManager::Get()

Powered by Google App Engine
This is Rietveld 408576698