OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ | 5 #ifndef CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ |
6 #define CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ | 6 #define CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ |
7 | 7 |
8 #include <set> | 8 #include <set> |
9 #include <string> | 9 #include <string> |
10 | 10 |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 // Ignore password change, remove existing cryptohome and | 110 // Ignore password change, remove existing cryptohome and |
111 // force full sync of user data. | 111 // force full sync of user data. |
112 virtual void ResyncUserData() = 0; | 112 virtual void ResyncUserData() = 0; |
113 | 113 |
114 // Shows Enterprise Enrollment screen. | 114 // Shows Enterprise Enrollment screen. |
115 virtual void ShowEnterpriseEnrollmentScreen() = 0; | 115 virtual void ShowEnterpriseEnrollmentScreen() = 0; |
116 | 116 |
117 // Shows Reset screen. | 117 // Shows Reset screen. |
118 virtual void ShowResetScreen() = 0; | 118 virtual void ShowResetScreen() = 0; |
119 | 119 |
| 120 // Show wrong hwid screen. |
| 121 virtual void ShowWrongHWIDScreen() = 0; |
| 122 |
120 // Let the delegate know about the handler it is supposed to be using. | 123 // Let the delegate know about the handler it is supposed to be using. |
121 virtual void SetWebUIHandler(LoginDisplayWebUIHandler* webui_handler) = 0; | 124 virtual void SetWebUIHandler(LoginDisplayWebUIHandler* webui_handler) = 0; |
122 | 125 |
123 // Returns users list to be shown. | 126 // Returns users list to be shown. |
124 virtual const UserList& GetUsers() const = 0; | 127 virtual const UserList& GetUsers() const = 0; |
125 | 128 |
126 // Whether login as guest is available. | 129 // Whether login as guest is available. |
127 virtual bool IsShowGuest() const = 0; | 130 virtual bool IsShowGuest() const = 0; |
128 | 131 |
129 // Whether login as guest is available. | 132 // Whether login as guest is available. |
(...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
416 // NOTIFICATION_AUTH_NEEDED and reset on either NOTIFICATION_AUTH_SUPPLIED or | 419 // NOTIFICATION_AUTH_NEEDED and reset on either NOTIFICATION_AUTH_SUPPLIED or |
417 // NOTIFICATION_AUTH_CANCELLED. | 420 // NOTIFICATION_AUTH_CANCELLED. |
418 bool has_pending_auth_ui_; | 421 bool has_pending_auth_ui_; |
419 | 422 |
420 DISALLOW_COPY_AND_ASSIGN(SigninScreenHandler); | 423 DISALLOW_COPY_AND_ASSIGN(SigninScreenHandler); |
421 }; | 424 }; |
422 | 425 |
423 } // namespace chromeos | 426 } // namespace chromeos |
424 | 427 |
425 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ | 428 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ |
OLD | NEW |