OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 COMPONENTS_WALLPAPER_WALLPAPER_MANAGER_BASE_H_ | 5 #ifndef COMPONENTS_WALLPAPER_WALLPAPER_MANAGER_BASE_H_ |
6 #define COMPONENTS_WALLPAPER_WALLPAPER_MANAGER_BASE_H_ | 6 #define COMPONENTS_WALLPAPER_WALLPAPER_MANAGER_BASE_H_ |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 | 9 |
10 #include <deque> | 10 #include <deque> |
11 #include <map> | 11 #include <map> |
12 #include <memory> | 12 #include <memory> |
13 #include <string> | 13 #include <string> |
14 #include <vector> | 14 #include <vector> |
15 | 15 |
16 #include "base/files/file_path.h" | 16 #include "base/files/file_path.h" |
17 #include "base/macros.h" | 17 #include "base/macros.h" |
18 #include "base/memory/ref_counted_memory.h" | 18 #include "base/memory/ref_counted_memory.h" |
19 #include "base/memory/weak_ptr.h" | 19 #include "base/memory/weak_ptr.h" |
20 #include "base/observer_list.h" | 20 #include "base/observer_list.h" |
21 #include "base/thread_task_runner_handle.h" | |
22 #include "base/threading/sequenced_worker_pool.h" | 21 #include "base/threading/sequenced_worker_pool.h" |
23 #include "base/threading/thread_checker.h" | 22 #include "base/threading/thread_checker.h" |
| 23 #include "base/threading/thread_task_runner_handle.h" |
24 #include "base/time/time.h" | 24 #include "base/time/time.h" |
25 #include "base/timer/timer.h" | 25 #include "base/timer/timer.h" |
26 #include "components/signin/core/account_id/account_id.h" | 26 #include "components/signin/core/account_id/account_id.h" |
27 #include "components/user_manager/user.h" | 27 #include "components/user_manager/user.h" |
28 #include "components/user_manager/user_image/user_image.h" | 28 #include "components/user_manager/user_image/user_image.h" |
29 #include "components/wallpaper/wallpaper_export.h" | 29 #include "components/wallpaper/wallpaper_export.h" |
30 #include "components/wallpaper/wallpaper_layout.h" | 30 #include "components/wallpaper/wallpaper_layout.h" |
31 #include "ui/gfx/image/image_skia.h" | 31 #include "ui/gfx/image/image_skia.h" |
32 | 32 |
33 class PrefRegistrySimple; | 33 class PrefRegistrySimple; |
(...skipping 570 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
604 | 604 |
605 base::WeakPtrFactory<WallpaperManagerBase> weak_factory_; | 605 base::WeakPtrFactory<WallpaperManagerBase> weak_factory_; |
606 | 606 |
607 private: | 607 private: |
608 DISALLOW_COPY_AND_ASSIGN(WallpaperManagerBase); | 608 DISALLOW_COPY_AND_ASSIGN(WallpaperManagerBase); |
609 }; | 609 }; |
610 | 610 |
611 } // namespace wallpaper | 611 } // namespace wallpaper |
612 | 612 |
613 #endif // COMPONENTS_WALLPAPER_WALLPAPER_MANAGER_BASE_H_ | 613 #endif // COMPONENTS_WALLPAPER_WALLPAPER_MANAGER_BASE_H_ |
OLD | NEW |