| Index: chrome/browser/chromeos/login/existing_user_controller.h
|
| diff --git a/chrome/browser/chromeos/login/existing_user_controller.h b/chrome/browser/chromeos/login/existing_user_controller.h
|
| index 9be96f12cccda0ef52941a6311413f4ea6f3053c..c0749dc588a96ff2670495f51162df52bcbda242 100644
|
| --- a/chrome/browser/chromeos/login/existing_user_controller.h
|
| +++ b/chrome/browser/chromeos/login/existing_user_controller.h
|
| @@ -121,6 +121,14 @@ class ExistingUserController : public LoginDisplay::Delegate,
|
| return host_;
|
| }
|
|
|
| + // Returns value of LoginPerformer::auth_mode() (cached if performer is
|
| + // destroyed).
|
| + LoginPerformer::AuthorizationMode auth_mode() const;
|
| +
|
| + // Returns value of LoginPerformer::password_changed() (cached if performer is
|
| + // destroyed).
|
| + bool password_changed() const;
|
| +
|
| private:
|
| friend class ExistingUserControllerTest;
|
| friend class ExistingUserControllerAutoLoginTest;
|
| @@ -281,6 +289,10 @@ class ExistingUserController : public LoginDisplay::Delegate,
|
| // Set in OnLoginSuccess. Before that use LoginPerformer::password_changed().
|
| bool password_changed_;
|
|
|
| + // Set in OnLoginSuccess. Before that use LoginPerformer::auth_mode().
|
| + // Initialized with AUTH_MODE_EXTENSION as more restricted mode.
|
| + LoginPerformer::AuthorizationMode auth_mode_;
|
| +
|
| // True if auto-enrollment should be performed before starting the user's
|
| // session.
|
| bool do_auto_enrollment_;
|
|
|