| Index: chrome/browser/chromeos/login/webui_login_display.h
|
| diff --git a/chrome/browser/chromeos/login/webui_login_display.h b/chrome/browser/chromeos/login/webui_login_display.h
|
| index 0fbaba29bab837a3efc88ccfe1cf11645abc3c86..0a96899150ac07614747fd75b740454985ea52e8 100644
|
| --- a/chrome/browser/chromeos/login/webui_login_display.h
|
| +++ b/chrome/browser/chromeos/login/webui_login_display.h
|
| @@ -31,6 +31,7 @@ class WebUILoginDisplay : public LoginDisplay,
|
| virtual void ClearAndEnablePassword() OVERRIDE;
|
| virtual void Init(const UserList& users,
|
| bool show_guest,
|
| + bool show_supervised,
|
| bool show_users,
|
| bool show_new_user) OVERRIDE;
|
| virtual void OnPreferencesChanged() OVERRIDE;
|
| @@ -88,6 +89,7 @@ class WebUILoginDisplay : public LoginDisplay,
|
| const std::string& password);
|
| virtual const UserList& GetUsers() const OVERRIDE;
|
| virtual bool IsShowGuest() const OVERRIDE;
|
| + virtual bool IsShowSupervised() const OVERRIDE;
|
| virtual bool IsShowUsers() const OVERRIDE;
|
| virtual bool IsShowNewUser() const OVERRIDE;
|
| virtual bool IsSigninInProgress() const OVERRIDE;
|
| @@ -110,6 +112,9 @@ class WebUILoginDisplay : public LoginDisplay,
|
| // Whether to show guest login.
|
| bool show_guest_;
|
|
|
| + // Whether to show supervised users.
|
| + bool show_supervised_;
|
| +
|
| // Weather to show the user pads or a plain credentials dialogue.
|
| bool show_users_;
|
|
|
|
|