| 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 9428607bee67f8416b3b08249d0edc18cb36c955..7e026ebfda9c8e8862ca92d1d5e3e4669bee2229 100644
|
| --- a/chrome/browser/chromeos/login/existing_user_controller.cc
|
| +++ b/chrome/browser/chromeos/login/existing_user_controller.cc
|
| @@ -333,10 +333,8 @@ void ExistingUserController::OnLoginFailure(const std::string& error) {
|
| }
|
|
|
| void ExistingUserController::AppendStartUrlToCmdline() {
|
| - if (start_url_.is_valid()) {
|
| - CommandLine::ForCurrentProcess()->AppendLooseValue(
|
| - UTF8ToWide(start_url_.spec()));
|
| - }
|
| + if (start_url_.is_valid())
|
| + CommandLine::ForCurrentProcess()->AppendArg(start_url_.spec());
|
| }
|
|
|
| void ExistingUserController::ClearCaptchaState() {
|
|
|