| 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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "ash/desktop_background/desktop_background_resources.h" | 11 #include "ash/desktop_background/desktop_background_resources.h" |
| 12 #include "base/memory/singleton.h" | 12 #include "base/memory/singleton.h" |
| 13 #include "base/time.h" | 13 #include "base/time.h" |
| 14 #include "chrome/browser/chromeos/login/user.h" | 14 #include "chrome/browser/chromeos/login/user.h" |
| 15 #include "chrome/browser/ui/webui/options2/chromeos/set_wallpaper_options_handle
r2.h" | 15 #include "chrome/browser/ui/webui/options2/chromeos/set_wallpaper_options_handle
r.h" |
| 16 | 16 |
| 17 class SkBitmap; | 17 class SkBitmap; |
| 18 class FilePath; | 18 class FilePath; |
| 19 class PrefService; | 19 class PrefService; |
| 20 | 20 |
| 21 namespace chromeos { | 21 namespace chromeos { |
| 22 | 22 |
| 23 class RemoveUserDelegate; | 23 class RemoveUserDelegate; |
| 24 class UserImage; | 24 class UserImage; |
| 25 | 25 |
| (...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 256 virtual void NotifyLocalStateChanged() = 0; | 256 virtual void NotifyLocalStateChanged() = 0; |
| 257 | 257 |
| 258 // Returns the result of the last successful profile image download, if any. | 258 // Returns the result of the last successful profile image download, if any. |
| 259 // Otherwise, returns an empty bitmap. | 259 // Otherwise, returns an empty bitmap. |
| 260 virtual const SkBitmap& DownloadedProfileImage() const = 0; | 260 virtual const SkBitmap& DownloadedProfileImage() const = 0; |
| 261 }; | 261 }; |
| 262 | 262 |
| 263 } // namespace chromeos | 263 } // namespace chromeos |
| 264 | 264 |
| 265 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_USER_MANAGER_H_ | 265 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_USER_MANAGER_H_ |
| OLD | NEW |