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

Unified Diff: chrome/browser/chromeos/login/user_manager.cc

Issue 2078017: chromeos: Add _CHROME_LOGGED_IN property on root window. (Closed)
Patch Set: move logged-in property setting to UserManager::UserLoggedIn() Created 10 years, 7 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 | « no previous file | chrome/browser/chromeos/login/wizard_controller.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/login/user_manager.cc
diff --git a/chrome/browser/chromeos/login/user_manager.cc b/chrome/browser/chromeos/login/user_manager.cc
index b0188297ba73d054431e8b2e4a687a658e774af7..e31f12b7229994c3ce23dfb04c9078b922004b78 100644
--- a/chrome/browser/chromeos/login/user_manager.cc
+++ b/chrome/browser/chromeos/login/user_manager.cc
@@ -11,6 +11,7 @@
#include "base/values.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/chromeos/login/user_image_downloader.h"
+#include "chrome/browser/chromeos/wm_ipc.h"
#include "chrome/browser/pref_service.h"
#include "chrome/common/notification_service.h"
#include "grit/theme_resources.h"
@@ -126,6 +127,9 @@ void UserManager::UserLoggedIn(const std::string& email) {
NotificationType::LOGIN_USER_CHANGED,
Source<UserManager>(this),
Details<const User>(&logged_in_user_));
+
+ // Let the window manager know that we're logged in now.
+ WmIpc::instance()->SetLoggedInProperty(true);
}
void UserManager::DownloadUserImage(const std::string& username) {
« no previous file with comments | « no previous file | chrome/browser/chromeos/login/wizard_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698