| Index: chrome/browser/chromeos/login/mock_authenticator.h
|
| diff --git a/chrome/browser/chromeos/login/mock_authenticator.h b/chrome/browser/chromeos/login/mock_authenticator.h
|
| index 3e4c15305017b55d4c2c1aaf52bde8fa55236cb3..d6322b1101ab131969c692af7f4b3cf2315ce298 100644
|
| --- a/chrome/browser/chromeos/login/mock_authenticator.h
|
| +++ b/chrome/browser/chromeos/login/mock_authenticator.h
|
| @@ -31,19 +31,17 @@ class MockAuthenticator : public Authenticator {
|
| expected_password_(expected_password) {
|
| }
|
|
|
| - virtual bool CompleteLogin(Profile* profile,
|
| + virtual void CompleteLogin(Profile* profile,
|
| const std::string& username,
|
| const std::string& password);
|
|
|
| - // Returns true after posting task to UI thread to call OnLoginSuccess().
|
| - // This is called on the FILE thread now, so we need to do this.
|
| - virtual bool AuthenticateToLogin(Profile* profile,
|
| + virtual void AuthenticateToLogin(Profile* profile,
|
| const std::string& username,
|
| const std::string& password,
|
| const std::string& login_token,
|
| const std::string& login_captcha);
|
|
|
| - virtual bool AuthenticateToUnlock(const std::string& username,
|
| + virtual void AuthenticateToUnlock(const std::string& username,
|
| const std::string& password);
|
|
|
| virtual void LoginOffTheRecord();
|
|
|