OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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_controller.h" | 10 #include "ash/desktop_background/desktop_background_controller.h" |
11 #include "base/files/file_path.h" | 11 #include "base/files/file_path.h" |
12 #include "base/memory/ref_counted_memory.h" | 12 #include "base/memory/ref_counted_memory.h" |
13 #include "base/memory/weak_ptr.h" | 13 #include "base/memory/weak_ptr.h" |
14 #include "base/threading/sequenced_worker_pool.h" | 14 #include "base/threading/sequenced_worker_pool.h" |
15 #include "base/time.h" | 15 #include "base/time/time.h" |
16 #include "base/timer.h" | 16 #include "base/timer/timer.h" |
17 #include "chrome/browser/chromeos/login/user.h" | 17 #include "chrome/browser/chromeos/login/user.h" |
18 #include "chrome/browser/chromeos/login/user_image.h" | 18 #include "chrome/browser/chromeos/login/user_image.h" |
19 #include "chrome/browser/chromeos/login/user_image_loader.h" | 19 #include "chrome/browser/chromeos/login/user_image_loader.h" |
20 #include "chrome/browser/chromeos/system/timezone_settings.h" | 20 #include "chrome/browser/chromeos/system/timezone_settings.h" |
21 #include "chromeos/dbus/power_manager_client.h" | 21 #include "chromeos/dbus/power_manager_client.h" |
22 #include "content/public/browser/notification_observer.h" | 22 #include "content/public/browser/notification_observer.h" |
23 #include "content/public/browser/notification_registrar.h" | 23 #include "content/public/browser/notification_registrar.h" |
24 #include "third_party/icu/public/i18n/unicode/timezone.h" | 24 #include "third_party/icu/public/i18n/unicode/timezone.h" |
25 #include "ui/gfx/image/image_skia.h" | 25 #include "ui/gfx/image/image_skia.h" |
26 | 26 |
(...skipping 327 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
354 content::NotificationRegistrar registrar_; | 354 content::NotificationRegistrar registrar_; |
355 | 355 |
356 base::OneShotTimer<WallpaperManager> timer_; | 356 base::OneShotTimer<WallpaperManager> timer_; |
357 | 357 |
358 DISALLOW_COPY_AND_ASSIGN(WallpaperManager); | 358 DISALLOW_COPY_AND_ASSIGN(WallpaperManager); |
359 }; | 359 }; |
360 | 360 |
361 } // namespace chromeos | 361 } // namespace chromeos |
362 | 362 |
363 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WALLPAPER_MANAGER_H_ | 363 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WALLPAPER_MANAGER_H_ |
OLD | NEW |