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_WEBUI_LOGIN_DISPLAY_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_UI_WEBUI_LOGIN_DISPLAY_H_ |
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_UI_WEBUI_LOGIN_DISPLAY_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_UI_WEBUI_LOGIN_DISPLAY_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 void MigrateUserData(const std::string& old_password) override; | 57 void MigrateUserData(const std::string& old_password) override; |
58 | 58 |
59 void Login(const UserContext& user_context, | 59 void Login(const UserContext& user_context, |
60 const SigninSpecifics& specifics) override; | 60 const SigninSpecifics& specifics) override; |
61 bool IsSigninInProgress() const override; | 61 bool IsSigninInProgress() const override; |
62 void Signout() override; | 62 void Signout() override; |
63 void CompleteLogin(const UserContext& user_context) override; | 63 void CompleteLogin(const UserContext& user_context) override; |
64 | 64 |
65 void OnSigninScreenReady() override; | 65 void OnSigninScreenReady() override; |
66 void CancelUserAdding() override; | 66 void CancelUserAdding() override; |
67 void LoadWallpaper(const std::string& username) override; | 67 void LoadWallpaper(const AccountId& account_id) override; |
68 void LoadSigninWallpaper() override; | 68 void LoadSigninWallpaper() override; |
69 void ShowEnterpriseEnrollmentScreen() override; | 69 void ShowEnterpriseEnrollmentScreen() override; |
70 void ShowEnableDebuggingScreen() override; | 70 void ShowEnableDebuggingScreen() override; |
71 void ShowKioskEnableScreen() override; | 71 void ShowKioskEnableScreen() override; |
72 void ShowKioskAutolaunchScreen() override; | 72 void ShowKioskAutolaunchScreen() override; |
73 void ShowWrongHWIDScreen() override; | 73 void ShowWrongHWIDScreen() override; |
74 void SetWebUIHandler(LoginDisplayWebUIHandler* webui_handler) override; | 74 void SetWebUIHandler(LoginDisplayWebUIHandler* webui_handler) override; |
75 virtual void ShowSigninScreenForCreds(const std::string& username, | 75 virtual void ShowSigninScreenForCreds(const std::string& username, |
76 const std::string& password); | 76 const std::string& password); |
77 bool IsShowGuest() const override; | 77 bool IsShowGuest() const override; |
(...skipping 22 matching lines...) Expand all Loading... |
100 | 100 |
101 // Reference to the WebUI handling layer for the login screen | 101 // Reference to the WebUI handling layer for the login screen |
102 LoginDisplayWebUIHandler* webui_handler_; | 102 LoginDisplayWebUIHandler* webui_handler_; |
103 | 103 |
104 DISALLOW_COPY_AND_ASSIGN(WebUILoginDisplay); | 104 DISALLOW_COPY_AND_ASSIGN(WebUILoginDisplay); |
105 }; | 105 }; |
106 | 106 |
107 } // namespace chromeos | 107 } // namespace chromeos |
108 | 108 |
109 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_UI_WEBUI_LOGIN_DISPLAY_H_ | 109 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_UI_WEBUI_LOGIN_DISPLAY_H_ |
OLD | NEW |