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" | 10 #include "ash/desktop_background/desktop_background_resources.h" |
11 #include "base/memory/singleton.h" | 11 #include "base/memory/singleton.h" |
12 #include "base/time.h" | |
13 #include "chrome/browser/chromeos/login/user.h" | 12 #include "chrome/browser/chromeos/login/user.h" |
14 #include "chrome/browser/ui/webui/options/chromeos/set_wallpaper_options_handler
.h" | 13 #include "chrome/browser/ui/webui/options/chromeos/set_wallpaper_options_handler
.h" |
15 | 14 |
16 class FilePath; | 15 class FilePath; |
17 class PrefService; | 16 class PrefService; |
18 | 17 |
19 namespace gfx { | 18 namespace gfx { |
20 class ImageSkia; | 19 class ImageSkia; |
21 } | 20 } |
22 | 21 |
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
243 virtual void NotifyLocalStateChanged() = 0; | 242 virtual void NotifyLocalStateChanged() = 0; |
244 | 243 |
245 // Returns the result of the last successful profile image download, if any. | 244 // Returns the result of the last successful profile image download, if any. |
246 // Otherwise, returns an empty bitmap. | 245 // Otherwise, returns an empty bitmap. |
247 virtual const gfx::ImageSkia& DownloadedProfileImage() const = 0; | 246 virtual const gfx::ImageSkia& DownloadedProfileImage() const = 0; |
248 }; | 247 }; |
249 | 248 |
250 } // namespace chromeos | 249 } // namespace chromeos |
251 | 250 |
252 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_USER_MANAGER_H_ | 251 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_USER_MANAGER_H_ |
OLD | NEW |