OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_CHROMEOS_LOGIN_UI_LOGIN_DISPLAY_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_UI_LOGIN_DISPLAY_H_ |
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_UI_LOGIN_DISPLAY_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_UI_LOGIN_DISPLAY_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
65 // Complete sign process with specified |user_context|. | 65 // Complete sign process with specified |user_context|. |
66 // Used for new users authenticated through an extension. | 66 // Used for new users authenticated through an extension. |
67 virtual void CompleteLogin(const UserContext& user_context) = 0; | 67 virtual void CompleteLogin(const UserContext& user_context) = 0; |
68 | 68 |
69 // Notify the delegate when the sign-in UI is finished loading. | 69 // Notify the delegate when the sign-in UI is finished loading. |
70 virtual void OnSigninScreenReady() = 0; | 70 virtual void OnSigninScreenReady() = 0; |
71 | 71 |
72 // Called when the user requests enterprise enrollment. | 72 // Called when the user requests enterprise enrollment. |
73 virtual void OnStartEnterpriseEnrollment() = 0; | 73 virtual void OnStartEnterpriseEnrollment() = 0; |
74 | 74 |
| 75 // Called when the user requests enable developer features screen. |
| 76 virtual void OnStartEnableDebuggingScreen() = 0; |
| 77 |
75 // Called when the user requests kiosk enable screen. | 78 // Called when the user requests kiosk enable screen. |
76 virtual void OnStartKioskEnableScreen() = 0; | 79 virtual void OnStartKioskEnableScreen() = 0; |
77 | 80 |
78 // Called when the owner permission for kiosk app auto launch is requested. | 81 // Called when the owner permission for kiosk app auto launch is requested. |
79 virtual void OnStartKioskAutolaunchScreen() = 0; | 82 virtual void OnStartKioskAutolaunchScreen() = 0; |
80 | 83 |
81 // Shows wrong HWID screen. | 84 // Shows wrong HWID screen. |
82 virtual void ShowWrongHWIDScreen() = 0; | 85 virtual void ShowWrongHWIDScreen() = 0; |
83 | 86 |
84 // Sets the displayed email for the next login attempt with |CompleteLogin|. | 87 // Sets the displayed email for the next login attempt with |CompleteLogin|. |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
171 // in redesigned login stack. | 174 // in redesigned login stack. |
172 // Login stack (and this object) will be recreated for next user sign in. | 175 // Login stack (and this object) will be recreated for next user sign in. |
173 bool is_signin_completed_; | 176 bool is_signin_completed_; |
174 | 177 |
175 DISALLOW_COPY_AND_ASSIGN(LoginDisplay); | 178 DISALLOW_COPY_AND_ASSIGN(LoginDisplay); |
176 }; | 179 }; |
177 | 180 |
178 } // namespace chromeos | 181 } // namespace chromeos |
179 | 182 |
180 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_UI_LOGIN_DISPLAY_H_ | 183 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_UI_LOGIN_DISPLAY_H_ |
OLD | NEW |