| Index: chrome/browser/chromeos/system/ash_system_tray_delegate.cc
|
| diff --git a/chrome/browser/chromeos/system/ash_system_tray_delegate.cc b/chrome/browser/chromeos/system/ash_system_tray_delegate.cc
|
| index c3fe71f26358a98dd765ca2da0146368fa14e05d..0dd0529d0646f3c50dc4dca803ebc3ebc69db5f7 100644
|
| --- a/chrome/browser/chromeos/system/ash_system_tray_delegate.cc
|
| +++ b/chrome/browser/chromeos/system/ash_system_tray_delegate.cc
|
| @@ -471,7 +471,8 @@ class SystemTrayDelegate : public ash::SystemTrayDelegate,
|
| virtual ash::user::LoginStatus GetUserLoginStatus() const OVERRIDE {
|
| // Map ChromeOS specific LOGGED_IN states to Ash LOGGED_IN states.
|
| LoginState::LoggedInState state = LoginState::Get()->GetLoggedInState();
|
| - if (state == LoginState::LOGGED_IN_OOBE ||
|
| + if (!LoginState::Get()->IsSessionStarted() ||
|
| + state == LoginState::LOGGED_IN_OOBE ||
|
| state == LoginState::LOGGED_IN_NONE) {
|
| return ash::user::LOGGED_IN_NONE;
|
| }
|
|
|