| Index: chrome/browser/chromeos/login/auth/test_attempt_state.cc
|
| diff --git a/chrome/browser/chromeos/login/auth/test_attempt_state.cc b/chrome/browser/chromeos/login/auth/test_attempt_state.cc
|
| index c5313e2a5f1202046ddc83aafc06977b3d7f977f..c32851392803d259b756233b0d1c0880f1f0b4cb 100644
|
| --- a/chrome/browser/chromeos/login/auth/test_attempt_state.cc
|
| +++ b/chrome/browser/chromeos/login/auth/test_attempt_state.cc
|
| @@ -4,21 +4,17 @@
|
|
|
| #include "chrome/browser/chromeos/login/auth/test_attempt_state.h"
|
|
|
| -#include <string>
|
| -
|
| +#include "chrome/browser/chromeos/login/users/user.h"
|
| #include "google_apis/gaia/gaia_auth_consumer.h"
|
|
|
| namespace chromeos {
|
|
|
| TestAttemptState::TestAttemptState(const UserContext& credentials,
|
| - const std::string& login_token,
|
| - const std::string& login_captcha,
|
| - const User::UserType user_type,
|
| const bool user_is_new)
|
| : AuthAttemptState(credentials,
|
| - login_token,
|
| - login_captcha,
|
| - user_type,
|
| + User::USER_TYPE_REGULAR,
|
| + false, // unlock
|
| + false, // online_complete
|
| user_is_new) {
|
| }
|
|
|
|
|