| 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 73c7c2e4fb8f6cc882a61414ab98c74bb4f8cb92..d9c8497ec858e7582fb98f8dbd7889fd4df9f603 100644
|
| --- a/chrome/browser/chromeos/login/existing_user_controller_browsertest.cc
|
| +++ b/chrome/browser/chromeos/login/existing_user_controller_browsertest.cc
|
| @@ -252,7 +252,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));
|
| @@ -317,7 +317,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));
|
|
|