| 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> |
| 9 |
| 8 #include <deque> | 10 #include <deque> |
| 9 #include <map> | 11 #include <map> |
| 10 #include <string> | 12 #include <string> |
| 11 #include <vector> | 13 #include <vector> |
| 12 | 14 |
| 13 #include "base/files/file_path.h" | 15 #include "base/files/file_path.h" |
| 16 #include "base/macros.h" |
| 14 #include "base/memory/ref_counted_memory.h" | 17 #include "base/memory/ref_counted_memory.h" |
| 15 #include "base/memory/scoped_ptr.h" | 18 #include "base/memory/scoped_ptr.h" |
| 16 #include "base/memory/weak_ptr.h" | 19 #include "base/memory/weak_ptr.h" |
| 17 #include "base/observer_list.h" | 20 #include "base/observer_list.h" |
| 18 #include "base/thread_task_runner_handle.h" | 21 #include "base/thread_task_runner_handle.h" |
| 19 #include "base/threading/sequenced_worker_pool.h" | 22 #include "base/threading/sequenced_worker_pool.h" |
| 20 #include "base/threading/thread_checker.h" | 23 #include "base/threading/thread_checker.h" |
| 21 #include "base/time/time.h" | 24 #include "base/time/time.h" |
| 22 #include "base/timer/timer.h" | 25 #include "base/timer/timer.h" |
| 23 #include "components/signin/core/account_id/account_id.h" | 26 #include "components/signin/core/account_id/account_id.h" |
| (...skipping 570 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 594 | 597 |
| 595 base::WeakPtrFactory<WallpaperManagerBase> weak_factory_; | 598 base::WeakPtrFactory<WallpaperManagerBase> weak_factory_; |
| 596 | 599 |
| 597 private: | 600 private: |
| 598 DISALLOW_COPY_AND_ASSIGN(WallpaperManagerBase); | 601 DISALLOW_COPY_AND_ASSIGN(WallpaperManagerBase); |
| 599 }; | 602 }; |
| 600 | 603 |
| 601 } // namespace wallpaper | 604 } // namespace wallpaper |
| 602 | 605 |
| 603 #endif // COMPONENTS_WALLPAPER_WALLPAPER_MANAGER_BASE_H_ | 606 #endif // COMPONENTS_WALLPAPER_WALLPAPER_MANAGER_BASE_H_ |
| OLD | NEW |