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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 virtual void CompleteLogin(const UserContext& user_context) override; | 56 virtual void CompleteLogin(const UserContext& user_context) override; |
57 virtual void Login(const UserContext& user_context, | 57 virtual void Login(const UserContext& user_context, |
58 const SigninSpecifics& specifics) override; | 58 const SigninSpecifics& specifics) override; |
59 virtual void MigrateUserData(const std::string& old_password) override; | 59 virtual void MigrateUserData(const std::string& old_password) override; |
60 virtual void LoadWallpaper(const std::string& username) override; | 60 virtual void LoadWallpaper(const std::string& username) override; |
61 virtual void LoadSigninWallpaper() override; | 61 virtual void LoadSigninWallpaper() override; |
62 virtual void OnSigninScreenReady() override; | 62 virtual void OnSigninScreenReady() override; |
63 virtual void RemoveUser(const std::string& username) override; | 63 virtual void RemoveUser(const std::string& username) override; |
64 virtual void ResyncUserData() override; | 64 virtual void ResyncUserData() override; |
65 virtual void ShowEnterpriseEnrollmentScreen() override; | 65 virtual void ShowEnterpriseEnrollmentScreen() override; |
| 66 virtual void ShowEnableDebuggingScreen() override; |
66 virtual void ShowKioskEnableScreen() override; | 67 virtual void ShowKioskEnableScreen() override; |
67 virtual void ShowKioskAutolaunchScreen() override; | 68 virtual void ShowKioskAutolaunchScreen() override; |
68 virtual void ShowWrongHWIDScreen() override; | 69 virtual void ShowWrongHWIDScreen() override; |
69 virtual void SetWebUIHandler( | 70 virtual void SetWebUIHandler( |
70 LoginDisplayWebUIHandler* webui_handler) override; | 71 LoginDisplayWebUIHandler* webui_handler) override; |
71 virtual void ShowSigninScreenForCreds(const std::string& username, | 72 virtual void ShowSigninScreenForCreds(const std::string& username, |
72 const std::string& password); | 73 const std::string& password); |
73 virtual const user_manager::UserList& GetUsers() const override; | 74 virtual const user_manager::UserList& GetUsers() const override; |
74 virtual bool IsShowGuest() const override; | 75 virtual bool IsShowGuest() const override; |
75 virtual bool IsShowUsers() const override; | 76 virtual bool IsShowUsers() const override; |
(...skipping 21 matching lines...) Expand all Loading... |
97 user_manager::UserList owner_user_list_; | 98 user_manager::UserList owner_user_list_; |
98 | 99 |
99 static user_manager::UserManager* test_user_manager_; | 100 static user_manager::UserManager* test_user_manager_; |
100 | 101 |
101 DISALLOW_COPY_AND_ASSIGN(AppLaunchSigninScreen); | 102 DISALLOW_COPY_AND_ASSIGN(AppLaunchSigninScreen); |
102 }; | 103 }; |
103 | 104 |
104 } // namespace chromeos | 105 } // namespace chromeos |
105 | 106 |
106 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_APP_LAUNCH_SIGNIN_SCREEN_H_ | 107 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_APP_LAUNCH_SIGNIN_SCREEN_H_ |
OLD | NEW |