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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 | 47 |
48 // SigninScreenHandlerDelegate implementation: | 48 // SigninScreenHandlerDelegate implementation: |
49 virtual void CompleteLogin(const std::string& username, | 49 virtual void CompleteLogin(const std::string& username, |
50 const std::string& password) OVERRIDE; | 50 const std::string& password) OVERRIDE; |
51 virtual void Login(const std::string& username, | 51 virtual void Login(const std::string& username, |
52 const std::string& password) OVERRIDE; | 52 const std::string& password) OVERRIDE; |
53 virtual void LoginAsDemoUser() OVERRIDE; | 53 virtual void LoginAsDemoUser() OVERRIDE; |
54 virtual void LoginAsGuest() OVERRIDE; | 54 virtual void LoginAsGuest() OVERRIDE; |
55 virtual void Signout() OVERRIDE; | 55 virtual void Signout() OVERRIDE; |
56 virtual void CreateAccount() OVERRIDE; | 56 virtual void CreateAccount() OVERRIDE; |
57 virtual void OnUserDeselected() OVERRIDE; | 57 virtual void LoadWallpaper(const std::string& username) OVERRIDE; |
58 virtual void OnUserSelected(const std::string& username) OVERRIDE; | 58 virtual void LoadSigninWallpaper() OVERRIDE; |
59 virtual void RemoveUser(const std::string& username) OVERRIDE; | 59 virtual void RemoveUser(const std::string& username) OVERRIDE; |
60 virtual void ShowEnterpriseEnrollmentScreen() OVERRIDE; | 60 virtual void ShowEnterpriseEnrollmentScreen() OVERRIDE; |
61 virtual void ShowResetScreen() OVERRIDE; | 61 virtual void ShowResetScreen() OVERRIDE; |
62 virtual void SetWebUIHandler( | 62 virtual void SetWebUIHandler( |
63 LoginDisplayWebUIHandler* webui_handler) OVERRIDE; | 63 LoginDisplayWebUIHandler* webui_handler) OVERRIDE; |
64 virtual void ShowSigninScreenForCreds(const std::string& username, | 64 virtual void ShowSigninScreenForCreds(const std::string& username, |
65 const std::string& password); | 65 const std::string& password); |
66 virtual const UserList& GetUsers() const OVERRIDE; | 66 virtual const UserList& GetUsers() const OVERRIDE; |
67 virtual bool IsShowGuest() const OVERRIDE; | 67 virtual bool IsShowGuest() const OVERRIDE; |
68 virtual bool IsShowUsers() const OVERRIDE; | 68 virtual bool IsShowUsers() const OVERRIDE; |
(...skipping 15 matching lines...) Expand all Loading... |
84 | 84 |
85 // Reference to the WebUI handling layer for the login screen | 85 // Reference to the WebUI handling layer for the login screen |
86 LoginDisplayWebUIHandler* webui_handler_; | 86 LoginDisplayWebUIHandler* webui_handler_; |
87 | 87 |
88 DISALLOW_COPY_AND_ASSIGN(WebUILoginDisplay); | 88 DISALLOW_COPY_AND_ASSIGN(WebUILoginDisplay); |
89 }; | 89 }; |
90 | 90 |
91 } // namespace chromeos | 91 } // namespace chromeos |
92 | 92 |
93 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WEBUI_LOGIN_DISPLAY_H_ | 93 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WEBUI_LOGIN_DISPLAY_H_ |
OLD | NEW |