| Index: chrome/browser/chromeos/login/existing_user_controller_browsertest.cc
|
| diff --git a/chrome/browser/chromeos/login/existing_user_controller_browsertest.cc b/chrome/browser/chromeos/login/existing_user_controller_browsertest.cc
|
| index ed65eceb511e7a0eeea47cca42c7caef79ae317d..c4b3114ff21861cff9e265b9fc6f92a6fc00b0f5 100644
|
| --- a/chrome/browser/chromeos/login/existing_user_controller_browsertest.cc
|
| +++ b/chrome/browser/chromeos/login/existing_user_controller_browsertest.cc
|
| @@ -250,7 +250,7 @@ IN_PROC_BROWSER_TEST_F(ExistingUserControllerTest, ExistingUserLogin) {
|
| .Times(1)
|
| .WillOnce(WithArg<0>(Invoke(CreateAuthenticator)));
|
| EXPECT_CALL(*mock_login_utils_,
|
| - PrepareProfile(kUsername, _, kPassword, false, _, _, _))
|
| + PrepareProfile(kUsername, _, kPassword, _, _, _))
|
| .Times(1)
|
| .WillOnce(InvokeWithoutArgs(&profile_prepared_cb_,
|
| &base::Callback<void(void)>::Run));
|
| @@ -310,7 +310,7 @@ IN_PROC_BROWSER_TEST_F(ExistingUserControllerTest,
|
| .Times(1)
|
| .WillOnce(WithArg<0>(Invoke(CreateAuthenticatorNewUser)));
|
| EXPECT_CALL(*mock_login_utils_,
|
| - PrepareProfile(kNewUsername, _, kPassword, false, _, _, _))
|
| + PrepareProfile(kNewUsername, _, kPassword, _, _, _))
|
| .Times(1)
|
| .WillOnce(InvokeWithoutArgs(&profile_prepared_cb_,
|
| &base::Callback<void(void)>::Run));
|
|
|