| 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_WALLPAPER_MANAGER_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_WALLPAPER_MANAGER_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_WALLPAPER_MANAGER_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_WALLPAPER_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/weak_ptr.h" | 11 #include "base/memory/weak_ptr.h" |
| 12 #include "base/time.h" | 12 #include "base/time.h" |
| 13 #include "base/timer.h" | 13 #include "base/timer.h" |
| 14 #include "chrome/browser/chromeos/login/user.h" | 14 #include "chrome/browser/chromeos/login/user.h" |
| 15 #include "chrome/browser/chromeos/login/user_image.h" | 15 #include "chrome/browser/chromeos/login/user_image.h" |
| 16 #include "chrome/browser/chromeos/login/user_image_loader.h" | 16 #include "chrome/browser/chromeos/login/user_image_loader.h" |
| 17 #include "chrome/browser/chromeos/system/timezone_settings.h" | 17 #include "chrome/browser/chromeos/system/timezone_settings.h" |
| 18 #include "chrome/browser/ui/webui/options2/chromeos/set_wallpaper_options_handle
r.h" | 18 #include "chrome/browser/ui/webui/options/chromeos/set_wallpaper_options_handler
.h" |
| 19 #include "chromeos/dbus/power_manager_client.h" | 19 #include "chromeos/dbus/power_manager_client.h" |
| 20 #include "content/public/browser/notification_observer.h" | 20 #include "content/public/browser/notification_observer.h" |
| 21 #include "content/public/browser/notification_registrar.h" | 21 #include "content/public/browser/notification_registrar.h" |
| 22 #include "ui/gfx/image/image_skia.h" | 22 #include "ui/gfx/image/image_skia.h" |
| 23 #include "unicode/timezone.h" | 23 #include "unicode/timezone.h" |
| 24 | 24 |
| 25 class PrefService; | 25 class PrefService; |
| 26 | 26 |
| 27 namespace chromeos { | 27 namespace chromeos { |
| 28 | 28 |
| (...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 226 content::NotificationRegistrar registrar_; | 226 content::NotificationRegistrar registrar_; |
| 227 | 227 |
| 228 base::OneShotTimer<WallpaperManager> timer_; | 228 base::OneShotTimer<WallpaperManager> timer_; |
| 229 | 229 |
| 230 DISALLOW_COPY_AND_ASSIGN(WallpaperManager); | 230 DISALLOW_COPY_AND_ASSIGN(WallpaperManager); |
| 231 }; | 231 }; |
| 232 | 232 |
| 233 } // namespace chromeos | 233 } // namespace chromeos |
| 234 | 234 |
| 235 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WALLPAPER_MANAGER_H_ | 235 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WALLPAPER_MANAGER_H_ |
| OLD | NEW |