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