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_USERS_CHROME_USER_MANAGER_IMPL_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_USERS_CHROME_USER_MANAGER_IMPL_H_ |
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_USERS_CHROME_USER_MANAGER_IMPL_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_USERS_CHROME_USER_MANAGER_IMPL_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <memory> | 9 #include <memory> |
10 #include <string> | 10 #include <string> |
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
158 void PerformPostUserLoggedInActions(bool browser_restart) override; | 158 void PerformPostUserLoggedInActions(bool browser_restart) override; |
159 void RemoveNonCryptohomeData(const AccountId& account_id) override; | 159 void RemoveNonCryptohomeData(const AccountId& account_id) override; |
160 void RemoveUserInternal(const AccountId& account_id, | 160 void RemoveUserInternal(const AccountId& account_id, |
161 user_manager::RemoveUserDelegate* delegate) override; | 161 user_manager::RemoveUserDelegate* delegate) override; |
162 bool IsDemoApp(const AccountId& account_id) const override; | 162 bool IsDemoApp(const AccountId& account_id) const override; |
163 bool IsDeviceLocalAccountMarkedForRemoval( | 163 bool IsDeviceLocalAccountMarkedForRemoval( |
164 const AccountId& account_id) const override; | 164 const AccountId& account_id) const override; |
165 void DemoAccountLoggedIn() override; | 165 void DemoAccountLoggedIn() override; |
166 void GuestUserLoggedIn() override; | 166 void GuestUserLoggedIn() override; |
167 void KioskAppLoggedIn(user_manager::User* user) override; | 167 void KioskAppLoggedIn(user_manager::User* user) override; |
| 168 void ArcKioskAppLoggedIn(user_manager::User* user) override; |
168 void PublicAccountUserLoggedIn(user_manager::User* user) override; | 169 void PublicAccountUserLoggedIn(user_manager::User* user) override; |
169 void RegularUserLoggedIn(const AccountId& account_id) override; | 170 void RegularUserLoggedIn(const AccountId& account_id) override; |
170 void RegularUserLoggedInAsEphemeral(const AccountId& account_id) override; | 171 void RegularUserLoggedInAsEphemeral(const AccountId& account_id) override; |
171 void SupervisedUserLoggedIn(const AccountId& account_id) override; | 172 void SupervisedUserLoggedIn(const AccountId& account_id) override; |
172 bool HasPendingBootstrap(const AccountId& account_id) const override; | 173 bool HasPendingBootstrap(const AccountId& account_id) const override; |
173 | 174 |
174 private: | 175 private: |
175 friend class SupervisedUserManagerImpl; | 176 friend class SupervisedUserManagerImpl; |
176 friend class UserManagerTest; | 177 friend class UserManagerTest; |
177 friend class WallpaperManager; | 178 friend class WallpaperManager; |
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
285 std::unique_ptr<BootstrapManager> bootstrap_manager_; | 286 std::unique_ptr<BootstrapManager> bootstrap_manager_; |
286 | 287 |
287 base::WeakPtrFactory<ChromeUserManagerImpl> weak_factory_; | 288 base::WeakPtrFactory<ChromeUserManagerImpl> weak_factory_; |
288 | 289 |
289 DISALLOW_COPY_AND_ASSIGN(ChromeUserManagerImpl); | 290 DISALLOW_COPY_AND_ASSIGN(ChromeUserManagerImpl); |
290 }; | 291 }; |
291 | 292 |
292 } // namespace chromeos | 293 } // namespace chromeos |
293 | 294 |
294 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_USERS_CHROME_USER_MANAGER_IMPL_H_ | 295 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_USERS_CHROME_USER_MANAGER_IMPL_H_ |
OLD | NEW |