Chromium Code Reviews| 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..12253772a1e855f8aedb84f34bb387e51703c0eb 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 login. |
|
Nikita (slow)
2014/04/08 14:02:09
nit: show supervised users.
merkulova
2014/04/09 15:24:19
Done.
|
| + bool show_supervised_; |
| + |
| // Weather to show the user pads or a plain credentials dialogue. |
| bool show_users_; |