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

Unified Diff: ash/mus/window_manager.cc

Issue 2628933003: Revert of Reland: chromeos: Fix shelf appearing at login screen under mash (Closed)
Patch Set: Created 3 years, 11 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/test/wm_test_base.cc ('k') | ash/root_window_controller_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/mus/window_manager.cc
diff --git a/ash/mus/window_manager.cc b/ash/mus/window_manager.cc
index bd3a4316057e455ea8e3ce282de08f5de735ecb2..569c4691535bb68d2f781da5c5c525e3894063bc 100644
--- a/ash/mus/window_manager.cc
+++ b/ash/mus/window_manager.cc
@@ -8,7 +8,6 @@
#include <utility>
-#include "ash/common/session/session_controller.h"
#include "ash/common/wm/container_finder.h"
#include "ash/common/wm/window_state.h"
#include "ash/display/screen_position_controller.h"
@@ -140,6 +139,9 @@
this, pointer_watcher_event_router_.get()));
shell_->Initialize(blocking_pool);
lookup_.reset(new WmLookupMus);
+
+ // TODO: this should be called when logged in. See http://crbug.com/654606.
+ shell_->CreateShelf();
}
aura::client::ActivationClient* WindowManager::activation_client() {
@@ -226,9 +228,9 @@
root_window_controller_ptr.get();
root_window_controllers_.insert(std::move(root_window_controller_ptr));
- // Create a shelf if a user is already logged in.
- if (shell_->session_controller()->NumberOfLoggedInUsers())
- root_window_controller->ash_root_window_controller()->CreateShelf();
+ // TODO: this should be called when logged in. See http://crbug.com/654606.
+ root_window_controller->ash_root_window_controller()
+ ->CreateShelf();
for (auto& observer : observers_)
observer.OnRootWindowControllerAdded(root_window_controller);
« no previous file with comments | « ash/mus/test/wm_test_base.cc ('k') | ash/root_window_controller_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698