| Index: chrome/browser/chromeos/login/authenticator.h
|
| diff --git a/chrome/browser/chromeos/login/authenticator.h b/chrome/browser/chromeos/login/authenticator.h
|
| index 0e57b3b3ab59f1eb9524b9cad336c8605471be54..33dfe13b2fb02a0216b8a11d893a10f623193382 100644
|
| --- a/chrome/browser/chromeos/login/authenticator.h
|
| +++ b/chrome/browser/chromeos/login/authenticator.h
|
| @@ -29,11 +29,14 @@ class Authenticator : public base::RefCountedThreadSafe<Authenticator> {
|
|
|
| // Given a |username| and |password|, this method attempts to authenticate
|
| // to login.
|
| + // Optionally |login_token| and |login_captcha| could be provided.
|
| // Returns true if we kick off the attempt successfully and false if we can't.
|
| // Must be called on the FILE thread.
|
| virtual bool AuthenticateToLogin(Profile* profile,
|
| const std::string& username,
|
| - const std::string& password) = 0;
|
| + const std::string& password,
|
| + const std::string& login_token,
|
| + const std::string& login_captcha) = 0;
|
|
|
| // Given a |username| and |password|, this method attempts to
|
| // authenticate to unlock the computer.
|
|
|