| 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 5f38b2c9162b093f969334355b1bae0943295488..85cac0a73a2fc6836fd0396cff105a8f906591b4 100644
|
| --- a/chrome/browser/chromeos/system/ash_system_tray_delegate.cc
|
| +++ b/chrome/browser/chromeos/system/ash_system_tray_delegate.cc
|
| @@ -568,11 +568,11 @@ class SystemTrayDelegate : public ash::SystemTrayDelegate,
|
| ActivationState state = cell[i]->activation_state();
|
| if (state == ACTIVATION_STATE_NOT_ACTIVATED ||
|
| state == ACTIVATION_STATE_PARTIALLY_ACTIVATED) {
|
| - // If a cellular network needs to be activated, then do not show it in
|
| - // the login/lock screen.
|
| - if (login_status == ash::user::LOGGED_IN_NONE ||
|
| - login_status == ash::user::LOGGED_IN_LOCKED)
|
| + // If a cellular network needs to be activated,
|
| + // then do not show it in the lock screen.
|
| + if (login_status == ash::user::LOGGED_IN_LOCKED)
|
| continue;
|
| +
|
| info.description = l10n_util::GetStringFUTF16(
|
| IDS_STATUSBAR_NETWORK_DEVICE_ACTIVATE,
|
| info.name);
|
|
|