| Index: chromeos/login/auth/mock_authenticator.h
|
| diff --git a/chromeos/login/auth/mock_authenticator.h b/chromeos/login/auth/mock_authenticator.h
|
| index 158cec78c9570f3fdf6d05e9b943dfadf9a8a1b9..e36eb6cf4f5b7f434363d93a720323650b279ecd 100644
|
| --- a/chromeos/login/auth/mock_authenticator.h
|
| +++ b/chromeos/login/auth/mock_authenticator.h
|
| @@ -27,25 +27,25 @@ class CHROMEOS_EXPORT MockAuthenticator : public Authenticator {
|
| const UserContext& expected_user_context);
|
|
|
| // Authenticator:
|
| - virtual void CompleteLogin(content::BrowserContext* context,
|
| - const UserContext& user_context) override;
|
| - virtual void AuthenticateToLogin(content::BrowserContext* context,
|
| - const UserContext& user_context) override;
|
| - virtual void AuthenticateToUnlock(const UserContext& user_context) override;
|
| - virtual void LoginAsSupervisedUser(const UserContext& user_context) override;
|
| - virtual void LoginOffTheRecord() override;
|
| - virtual void LoginAsPublicSession(const UserContext& user_context) override;
|
| - virtual void LoginAsKioskAccount(const std::string& app_user_id,
|
| - bool use_guest_mount) override;
|
| - virtual void OnAuthSuccess() override;
|
| - virtual void OnAuthFailure(const AuthFailure& failure) override;
|
| - virtual void RecoverEncryptedData(const std::string& old_password) override;
|
| - virtual void ResyncEncryptedData() override;
|
| + void CompleteLogin(content::BrowserContext* context,
|
| + const UserContext& user_context) override;
|
| + void AuthenticateToLogin(content::BrowserContext* context,
|
| + const UserContext& user_context) override;
|
| + void AuthenticateToUnlock(const UserContext& user_context) override;
|
| + void LoginAsSupervisedUser(const UserContext& user_context) override;
|
| + void LoginOffTheRecord() override;
|
| + void LoginAsPublicSession(const UserContext& user_context) override;
|
| + void LoginAsKioskAccount(const std::string& app_user_id,
|
| + bool use_guest_mount) override;
|
| + void OnAuthSuccess() override;
|
| + void OnAuthFailure(const AuthFailure& failure) override;
|
| + void RecoverEncryptedData(const std::string& old_password) override;
|
| + void ResyncEncryptedData() override;
|
|
|
| virtual void SetExpectedCredentials(const UserContext& user_context);
|
|
|
| protected:
|
| - virtual ~MockAuthenticator();
|
| + ~MockAuthenticator() override;
|
|
|
| private:
|
| UserContext expected_user_context_;
|
|
|