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/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
52 user_manager::UserManager* GetUserManager(); | 52 user_manager::UserManager* GetUserManager(); |
53 const user_manager::UserList& GetUsers() const; | 53 const user_manager::UserList& GetUsers() const; |
54 | 54 |
55 // SigninScreenHandlerDelegate implementation: | 55 // SigninScreenHandlerDelegate implementation: |
56 void CancelPasswordChangedFlow() override; | 56 void CancelPasswordChangedFlow() override; |
57 void CancelUserAdding() override; | 57 void CancelUserAdding() override; |
58 void CompleteLogin(const UserContext& user_context) override; | 58 void CompleteLogin(const UserContext& user_context) override; |
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 void MigrateUserData(const std::string& old_password) override; | 61 void MigrateUserData(const std::string& old_password) override; |
62 void LoadWallpaper(const std::string& username) override; | 62 void LoadWallpaper(const AccountId& account_id) override; |
63 void LoadSigninWallpaper() override; | 63 void LoadSigninWallpaper() override; |
64 void OnSigninScreenReady() override; | 64 void OnSigninScreenReady() override; |
65 void RemoveUser(const AccountId& account_id) override; | 65 void RemoveUser(const AccountId& account_id) override; |
66 void ResyncUserData() override; | 66 void ResyncUserData() override; |
67 void ShowEnterpriseEnrollmentScreen() override; | 67 void ShowEnterpriseEnrollmentScreen() override; |
68 void ShowEnableDebuggingScreen() override; | 68 void ShowEnableDebuggingScreen() override; |
69 void ShowKioskEnableScreen() override; | 69 void ShowKioskEnableScreen() override; |
70 void ShowKioskAutolaunchScreen() override; | 70 void ShowKioskAutolaunchScreen() override; |
71 void ShowWrongHWIDScreen() override; | 71 void ShowWrongHWIDScreen() override; |
72 void SetWebUIHandler(LoginDisplayWebUIHandler* webui_handler) override; | 72 void SetWebUIHandler(LoginDisplayWebUIHandler* webui_handler) override; |
(...skipping 22 matching lines...) Expand all Loading... |
95 user_manager::UserList owner_user_list_; | 95 user_manager::UserList owner_user_list_; |
96 | 96 |
97 static user_manager::UserManager* test_user_manager_; | 97 static user_manager::UserManager* test_user_manager_; |
98 | 98 |
99 DISALLOW_COPY_AND_ASSIGN(AppLaunchSigninScreen); | 99 DISALLOW_COPY_AND_ASSIGN(AppLaunchSigninScreen); |
100 }; | 100 }; |
101 | 101 |
102 } // namespace chromeos | 102 } // namespace chromeos |
103 | 103 |
104 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_APP_LAUNCH_SIGNIN_SCREEN_H_ | 104 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_APP_LAUNCH_SIGNIN_SCREEN_H_ |
OLD | NEW |