| 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 #include "chrome/browser/chromeos/login/users/wallpaper/wallpaper_manager_test_u
tils.h" | 5 #include "chrome/browser/chromeos/login/users/wallpaper/wallpaper_manager_test_u
tils.h" |
| 6 | 6 |
| 7 #include <stddef.h> | 7 #include <stddef.h> |
| 8 | 8 |
| 9 #include "ash/common/ash_switches.h" | |
| 10 #include "base/command_line.h" | 9 #include "base/command_line.h" |
| 11 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
| 12 #include "base/files/file_util.h" | 11 #include "base/files/file_util.h" |
| 13 #include "base/files/scoped_temp_dir.h" | 12 #include "base/files/scoped_temp_dir.h" |
| 14 #include "base/logging.h" | 13 #include "base/logging.h" |
| 15 #include "base/macros.h" | 14 #include "base/macros.h" |
| 16 #include "base/run_loop.h" | 15 #include "base/run_loop.h" |
| 17 #include "base/time/time.h" | 16 #include "base/time/time.h" |
| 18 #include "chrome/browser/chromeos/login/users/wallpaper/wallpaper_manager.h" | 17 #include "chrome/browser/chromeos/login/users/wallpaper/wallpaper_manager.h" |
| 19 #include "chromeos/chromeos_switches.h" | 18 #include "chromeos/chromeos_switches.h" |
| (...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 225 kWallpaperSize, | 224 kWallpaperSize, |
| 226 kLargeChildWallpaperColor)); | 225 kLargeChildWallpaperColor)); |
| 227 | 226 |
| 228 command_line->reset(new base::CommandLine(options)); | 227 command_line->reset(new base::CommandLine(options)); |
| 229 WallpaperManager::Get()->SetCommandLineForTesting(command_line->get()); | 228 WallpaperManager::Get()->SetCommandLineForTesting(command_line->get()); |
| 230 } | 229 } |
| 231 | 230 |
| 232 } // namespace wallpaper_manager_test_utils | 231 } // namespace wallpaper_manager_test_utils |
| 233 | 232 |
| 234 } // namespace chromeos | 233 } // namespace chromeos |
| OLD | NEW |