| 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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 void ResyncUserData() override; | 58 void ResyncUserData() override; |
| 59 void MigrateUserData(const std::string& old_password) override; | 59 void MigrateUserData(const std::string& old_password) override; |
| 60 | 60 |
| 61 void Login(const UserContext& user_context, | 61 void Login(const UserContext& user_context, |
| 62 const SigninSpecifics& specifics) override; | 62 const SigninSpecifics& specifics) override; |
| 63 bool IsSigninInProgress() const override; | 63 bool IsSigninInProgress() const override; |
| 64 void Signout() override; | 64 void Signout() override; |
| 65 void CompleteLogin(const UserContext& user_context) override; | 65 void CompleteLogin(const UserContext& user_context) override; |
| 66 | 66 |
| 67 void OnSigninScreenReady() override; | 67 void OnSigninScreenReady() override; |
| 68 void OnGaiaScreenReady() override; |
| 68 void CancelUserAdding() override; | 69 void CancelUserAdding() override; |
| 69 void LoadWallpaper(const AccountId& account_id) override; | 70 void LoadWallpaper(const AccountId& account_id) override; |
| 70 void LoadSigninWallpaper() override; | 71 void LoadSigninWallpaper() override; |
| 71 void ShowEnterpriseEnrollmentScreen() override; | 72 void ShowEnterpriseEnrollmentScreen() override; |
| 72 void ShowEnableDebuggingScreen() override; | 73 void ShowEnableDebuggingScreen() override; |
| 73 void ShowKioskEnableScreen() override; | 74 void ShowKioskEnableScreen() override; |
| 74 void ShowKioskAutolaunchScreen() override; | 75 void ShowKioskAutolaunchScreen() override; |
| 75 void ShowWrongHWIDScreen() override; | 76 void ShowWrongHWIDScreen() override; |
| 76 void SetWebUIHandler(LoginDisplayWebUIHandler* webui_handler) override; | 77 void SetWebUIHandler(LoginDisplayWebUIHandler* webui_handler) override; |
| 77 virtual void ShowSigninScreenForCreds(const std::string& username, | 78 virtual void ShowSigninScreenForCreds(const std::string& username, |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 | 112 |
| 112 // Reference to the WebUI handling layer for the login screen | 113 // Reference to the WebUI handling layer for the login screen |
| 113 LoginDisplayWebUIHandler* webui_handler_ = nullptr; | 114 LoginDisplayWebUIHandler* webui_handler_ = nullptr; |
| 114 | 115 |
| 115 DISALLOW_COPY_AND_ASSIGN(WebUILoginDisplay); | 116 DISALLOW_COPY_AND_ASSIGN(WebUILoginDisplay); |
| 116 }; | 117 }; |
| 117 | 118 |
| 118 } // namespace chromeos | 119 } // namespace chromeos |
| 119 | 120 |
| 120 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_UI_WEBUI_LOGIN_DISPLAY_H_ | 121 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_UI_WEBUI_LOGIN_DISPLAY_H_ |
| OLD | NEW |