| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_USER_MANAGER_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_USER_MANAGER_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_USER_MANAGER_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_USER_MANAGER_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "ash/desktop_background/desktop_background_resources.h" | |
| 11 #include "base/memory/singleton.h" | 10 #include "base/memory/singleton.h" |
| 12 #include "chrome/browser/chromeos/login/user.h" | 11 #include "chrome/browser/chromeos/login/user.h" |
| 13 | 12 |
| 14 class PrefService; | 13 class PrefService; |
| 15 | 14 |
| 16 namespace chromeos { | 15 namespace chromeos { |
| 17 | 16 |
| 18 class RemoveUserDelegate; | 17 class RemoveUserDelegate; |
| 19 class UserImageManager; | 18 class UserImageManager; |
| 20 | 19 |
| (...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 177 | 176 |
| 178 virtual void AddObserver(Observer* obs) = 0; | 177 virtual void AddObserver(Observer* obs) = 0; |
| 179 virtual void RemoveObserver(Observer* obs) = 0; | 178 virtual void RemoveObserver(Observer* obs) = 0; |
| 180 | 179 |
| 181 virtual void NotifyLocalStateChanged() = 0; | 180 virtual void NotifyLocalStateChanged() = 0; |
| 182 }; | 181 }; |
| 183 | 182 |
| 184 } // namespace chromeos | 183 } // namespace chromeos |
| 185 | 184 |
| 186 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_USER_MANAGER_H_ | 185 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_USER_MANAGER_H_ |
| OLD | NEW |