| Index: chrome/browser/chromeos/login/existing_user_controller.cc
|
| diff --git a/chrome/browser/chromeos/login/existing_user_controller.cc b/chrome/browser/chromeos/login/existing_user_controller.cc
|
| index a72b71f465b1fb237feda9418c4c1aac2f5e1c7b..77a5d2febd70478051e3bee7ea25b6e00046d729 100644
|
| --- a/chrome/browser/chromeos/login/existing_user_controller.cc
|
| +++ b/chrome/browser/chromeos/login/existing_user_controller.cc
|
| @@ -132,9 +132,9 @@ void RecordPasswordLoginEvent(const UserContext& user_context) {
|
|
|
| bool CanShowDebuggingFeatures() {
|
| // We need to be on the login screen and in dev mode to show this menu item.
|
| - return CommandLine::ForCurrentProcess()->HasSwitch(
|
| + return base::CommandLine::ForCurrentProcess()->HasSwitch(
|
| chromeos::switches::kSystemDevMode) &&
|
| - CommandLine::ForCurrentProcess()->HasSwitch(
|
| + base::CommandLine::ForCurrentProcess()->HasSwitch(
|
| chromeos::switches::kLoginManager) &&
|
| !user_manager::UserManager::Get()->IsSessionStarted();
|
| }
|
|
|