OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_WEBUI_LOGIN_DISPLAY_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_WEBUI_LOGIN_DISPLAY_H_ |
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_WEBUI_LOGIN_DISPLAY_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_WEBUI_LOGIN_DISPLAY_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 virtual void CompleteLogin(const std::string& username, | 55 virtual void CompleteLogin(const std::string& username, |
56 const std::string& password) OVERRIDE; | 56 const std::string& password) OVERRIDE; |
57 virtual void Login(const std::string& username, | 57 virtual void Login(const std::string& username, |
58 const std::string& password) OVERRIDE; | 58 const std::string& password) OVERRIDE; |
59 virtual void LoginAsRetailModeUser() OVERRIDE; | 59 virtual void LoginAsRetailModeUser() OVERRIDE; |
60 virtual void LoginAsGuest() OVERRIDE; | 60 virtual void LoginAsGuest() OVERRIDE; |
61 virtual void MigrateUserData(const std::string& old_password) OVERRIDE; | 61 virtual void MigrateUserData(const std::string& old_password) OVERRIDE; |
62 virtual void LoginAsPublicAccount(const std::string& username) OVERRIDE; | 62 virtual void LoginAsPublicAccount(const std::string& username) OVERRIDE; |
63 virtual void LoadWallpaper(const std::string& username) OVERRIDE; | 63 virtual void LoadWallpaper(const std::string& username) OVERRIDE; |
64 virtual void LoadSigninWallpaper() OVERRIDE; | 64 virtual void LoadSigninWallpaper() OVERRIDE; |
| 65 virtual void OnSigninScreenReady() OVERRIDE; |
65 virtual void RemoveUser(const std::string& username) OVERRIDE; | 66 virtual void RemoveUser(const std::string& username) OVERRIDE; |
66 virtual void ResyncUserData() OVERRIDE; | 67 virtual void ResyncUserData() OVERRIDE; |
67 virtual void ShowEnterpriseEnrollmentScreen() OVERRIDE; | 68 virtual void ShowEnterpriseEnrollmentScreen() OVERRIDE; |
68 virtual void ShowResetScreen() OVERRIDE; | 69 virtual void ShowResetScreen() OVERRIDE; |
69 virtual void ShowWrongHWIDScreen() OVERRIDE; | 70 virtual void ShowWrongHWIDScreen() OVERRIDE; |
70 virtual void SetWebUIHandler( | 71 virtual void SetWebUIHandler( |
71 LoginDisplayWebUIHandler* webui_handler) OVERRIDE; | 72 LoginDisplayWebUIHandler* webui_handler) OVERRIDE; |
72 virtual void ShowSigninScreenForCreds(const std::string& username, | 73 virtual void ShowSigninScreenForCreds(const std::string& username, |
73 const std::string& password); | 74 const std::string& password); |
74 virtual const UserList& GetUsers() const OVERRIDE; | 75 virtual const UserList& GetUsers() const OVERRIDE; |
(...skipping 18 matching lines...) Expand all Loading... |
93 | 94 |
94 // Reference to the WebUI handling layer for the login screen | 95 // Reference to the WebUI handling layer for the login screen |
95 LoginDisplayWebUIHandler* webui_handler_; | 96 LoginDisplayWebUIHandler* webui_handler_; |
96 | 97 |
97 DISALLOW_COPY_AND_ASSIGN(WebUILoginDisplay); | 98 DISALLOW_COPY_AND_ASSIGN(WebUILoginDisplay); |
98 }; | 99 }; |
99 | 100 |
100 } // namespace chromeos | 101 } // namespace chromeos |
101 | 102 |
102 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WEBUI_LOGIN_DISPLAY_H_ | 103 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WEBUI_LOGIN_DISPLAY_H_ |
OLD | NEW |