| Index: chrome/browser/ui/webui/chromeos/login/gaia_screen_handler.cc
|
| diff --git a/chrome/browser/ui/webui/chromeos/login/gaia_screen_handler.cc b/chrome/browser/ui/webui/chromeos/login/gaia_screen_handler.cc
|
| index 637847562669c273bed67b9a9eb2096ec581925d..037d21f4d7de52052ce8c25771b42889c13d0403 100644
|
| --- a/chrome/browser/ui/webui/chromeos/login/gaia_screen_handler.cc
|
| +++ b/chrome/browser/ui/webui/chromeos/login/gaia_screen_handler.cc
|
| @@ -212,7 +212,7 @@ void GaiaScreenHandler::LoadGaia(const GaiaContext& context) {
|
| params.Set("localizedStrings", localized_strings);
|
| }
|
|
|
| - CommandLine* command_line = CommandLine::ForCurrentProcess();
|
| + base::CommandLine* command_line = base::CommandLine::ForCurrentProcess();
|
|
|
| const GURL gaia_url =
|
| command_line->HasSwitch(::switches::kGaiaUrl)
|
| @@ -720,7 +720,7 @@ void GaiaScreenHandler::LoadAuthExtension(bool force,
|
| }
|
|
|
| context.embedded_signin_enabled =
|
| - CommandLine::ForCurrentProcess()->HasSwitch(
|
| + base::CommandLine::ForCurrentProcess()->HasSwitch(
|
| chromeos::switches::kEnableEmbeddedSignin) ||
|
| embedded_signin_enabled_by_shortcut_;
|
|
|
|
|