| 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 <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 virtual bool IsKioskApp(const std::string& user_id) const override; | 135 virtual bool IsKioskApp(const std::string& user_id) const override; |
| 136 virtual bool IsPublicAccountMarkedForRemoval( | 136 virtual bool IsPublicAccountMarkedForRemoval( |
| 137 const std::string& user_id) const override; | 137 const std::string& user_id) const override; |
| 138 virtual void DemoAccountLoggedIn() override; | 138 virtual void DemoAccountLoggedIn() override; |
| 139 virtual void GuestUserLoggedIn() override; | 139 virtual void GuestUserLoggedIn() override; |
| 140 virtual void KioskAppLoggedIn(const std::string& app_id) override; | 140 virtual void KioskAppLoggedIn(const std::string& app_id) override; |
| 141 virtual void PublicAccountUserLoggedIn(user_manager::User* user) override; | 141 virtual void PublicAccountUserLoggedIn(user_manager::User* user) override; |
| 142 virtual void RegularUserLoggedIn(const std::string& user_id) override; | 142 virtual void RegularUserLoggedIn(const std::string& user_id) override; |
| 143 virtual void RegularUserLoggedInAsEphemeral( | 143 virtual void RegularUserLoggedInAsEphemeral( |
| 144 const std::string& user_id) override; | 144 const std::string& user_id) override; |
| 145 virtual void RetailModeUserLoggedIn() override; | |
| 146 virtual void SupervisedUserLoggedIn(const std::string& user_id) override; | 145 virtual void SupervisedUserLoggedIn(const std::string& user_id) override; |
| 147 | 146 |
| 148 private: | 147 private: |
| 149 friend class SupervisedUserManagerImpl; | 148 friend class SupervisedUserManagerImpl; |
| 150 friend class UserManagerTest; | 149 friend class UserManagerTest; |
| 151 friend class WallpaperManager; | 150 friend class WallpaperManager; |
| 152 friend class WallpaperManagerTest; | 151 friend class WallpaperManagerTest; |
| 153 | 152 |
| 154 typedef base::hash_map<std::string, linked_ptr<UserImageManager> > | 153 typedef base::hash_map<std::string, linked_ptr<UserImageManager> > |
| 155 UserImageManagerMap; | 154 UserImageManagerMap; |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 237 wallpaper_policy_observer_; | 236 wallpaper_policy_observer_; |
| 238 | 237 |
| 239 base::WeakPtrFactory<ChromeUserManagerImpl> weak_factory_; | 238 base::WeakPtrFactory<ChromeUserManagerImpl> weak_factory_; |
| 240 | 239 |
| 241 DISALLOW_COPY_AND_ASSIGN(ChromeUserManagerImpl); | 240 DISALLOW_COPY_AND_ASSIGN(ChromeUserManagerImpl); |
| 242 }; | 241 }; |
| 243 | 242 |
| 244 } // namespace chromeos | 243 } // namespace chromeos |
| 245 | 244 |
| 246 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_USERS_CHROME_USER_MANAGER_IMPL_H_ | 245 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_USERS_CHROME_USER_MANAGER_IMPL_H_ |
| OLD | NEW |