| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_APP_LAUNCH_SIGNIN_SCREEN_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_APP_LAUNCH_SIGNIN_SCREEN_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_APP_LAUNCH_SIGNIN_SCREEN_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_APP_LAUNCH_SIGNIN_SCREEN_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 // SigninScreenHandlerDelegate implementation: | 56 // SigninScreenHandlerDelegate implementation: |
| 57 void CancelPasswordChangedFlow() override; | 57 void CancelPasswordChangedFlow() override; |
| 58 void CancelUserAdding() override; | 58 void CancelUserAdding() override; |
| 59 void CompleteLogin(const UserContext& user_context) override; | 59 void CompleteLogin(const UserContext& user_context) override; |
| 60 void Login(const UserContext& user_context, | 60 void Login(const UserContext& user_context, |
| 61 const SigninSpecifics& specifics) override; | 61 const SigninSpecifics& specifics) override; |
| 62 void MigrateUserData(const std::string& old_password) override; | 62 void MigrateUserData(const std::string& old_password) override; |
| 63 void LoadWallpaper(const AccountId& account_id) override; | 63 void LoadWallpaper(const AccountId& account_id) override; |
| 64 void LoadSigninWallpaper() override; | 64 void LoadSigninWallpaper() override; |
| 65 void OnSigninScreenReady() override; | 65 void OnSigninScreenReady() override; |
| 66 void OnGaiaScreenReady() override; |
| 66 void RemoveUser(const AccountId& account_id) override; | 67 void RemoveUser(const AccountId& account_id) override; |
| 67 void ResyncUserData() override; | 68 void ResyncUserData() override; |
| 68 void ShowEnterpriseEnrollmentScreen() override; | 69 void ShowEnterpriseEnrollmentScreen() override; |
| 69 void ShowEnableDebuggingScreen() override; | 70 void ShowEnableDebuggingScreen() override; |
| 70 void ShowKioskEnableScreen() override; | 71 void ShowKioskEnableScreen() override; |
| 71 void ShowKioskAutolaunchScreen() override; | 72 void ShowKioskAutolaunchScreen() override; |
| 72 void ShowWrongHWIDScreen() override; | 73 void ShowWrongHWIDScreen() override; |
| 73 void SetWebUIHandler(LoginDisplayWebUIHandler* webui_handler) override; | 74 void SetWebUIHandler(LoginDisplayWebUIHandler* webui_handler) override; |
| 74 virtual void ShowSigninScreenForCreds(const std::string& username, | 75 virtual void ShowSigninScreenForCreds(const std::string& username, |
| 75 const std::string& password); | 76 const std::string& password); |
| (...skipping 23 matching lines...) Expand all Loading... |
| 99 user_manager::UserList owner_user_list_; | 100 user_manager::UserList owner_user_list_; |
| 100 | 101 |
| 101 static user_manager::UserManager* test_user_manager_; | 102 static user_manager::UserManager* test_user_manager_; |
| 102 | 103 |
| 103 DISALLOW_COPY_AND_ASSIGN(AppLaunchSigninScreen); | 104 DISALLOW_COPY_AND_ASSIGN(AppLaunchSigninScreen); |
| 104 }; | 105 }; |
| 105 | 106 |
| 106 } // namespace chromeos | 107 } // namespace chromeos |
| 107 | 108 |
| 108 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_APP_LAUNCH_SIGNIN_SCREEN_H_ | 109 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_APP_LAUNCH_SIGNIN_SCREEN_H_ |
| OLD | NEW |