Index: chrome/browser/chromeos/login/screens/error_screen.cc |
diff --git a/chrome/browser/chromeos/login/screens/error_screen.cc b/chrome/browser/chromeos/login/screens/error_screen.cc |
index a0a714e6792a15f4100cacb7dd81efd33ebafea4..14971c9c5dba73fe4b5c0c0af21c8726f5872c86 100644 |
--- a/chrome/browser/chromeos/login/screens/error_screen.cc |
+++ b/chrome/browser/chromeos/login/screens/error_screen.cc |
@@ -74,8 +74,9 @@ void ErrorScreen::OnAuthSuccess(const UserContext& user_context) { |
void ErrorScreen::OnOffTheRecordAuthSuccess() { |
// Restart Chrome to enter the guest session. |
- const CommandLine& browser_command_line = *CommandLine::ForCurrentProcess(); |
- CommandLine command_line(browser_command_line.GetProgram()); |
+ const base::CommandLine& browser_command_line = |
+ *base::CommandLine::ForCurrentProcess(); |
+ base::CommandLine command_line(browser_command_line.GetProgram()); |
std::string cmd_line_str = |
GetOffTheRecordCommandLine(GURL(), |
StartupUtils::IsOobeCompleted(), |