| Index: chrome/browser/chromeos/login/users/wallpaper/wallpaper_manager_test_utils.cc
|
| diff --git a/chrome/browser/chromeos/login/users/wallpaper/wallpaper_manager_test_utils.cc b/chrome/browser/chromeos/login/users/wallpaper/wallpaper_manager_test_utils.cc
|
| index 20522d2e0ad2ea4ec11d3395790574a267f86af9..112921a7581e5b0df4293aea5ce767add7cdaae6 100644
|
| --- a/chrome/browser/chromeos/login/users/wallpaper/wallpaper_manager_test_utils.cc
|
| +++ b/chrome/browser/chromeos/login/users/wallpaper/wallpaper_manager_test_utils.cc
|
| @@ -170,34 +170,34 @@ void CreateCmdlineWallpapers(const base::ScopedTempDir& dir,
|
| std::vector<std::string> options;
|
| options.push_back(std::string("WM_Test_cmdline"));
|
| const base::FilePath small_file =
|
| - dir.path().Append(FILE_PATH_LITERAL("small.jpg"));
|
| + dir.GetPath().Append(FILE_PATH_LITERAL("small.jpg"));
|
| options.push_back(std::string("--") +
|
| chromeos::switches::kDefaultWallpaperSmall + "=" +
|
| small_file.value());
|
| const base::FilePath large_file =
|
| - dir.path().Append(FILE_PATH_LITERAL("large.jpg"));
|
| + dir.GetPath().Append(FILE_PATH_LITERAL("large.jpg"));
|
| options.push_back(std::string("--") +
|
| chromeos::switches::kDefaultWallpaperLarge + "=" +
|
| large_file.value());
|
|
|
| const base::FilePath guest_small_file =
|
| - dir.path().Append(FILE_PATH_LITERAL("guest_small.jpg"));
|
| + dir.GetPath().Append(FILE_PATH_LITERAL("guest_small.jpg"));
|
| options.push_back(std::string("--") +
|
| chromeos::switches::kGuestWallpaperSmall + "=" +
|
| guest_small_file.value());
|
| const base::FilePath guest_large_file =
|
| - dir.path().Append(FILE_PATH_LITERAL("guest_large.jpg"));
|
| + dir.GetPath().Append(FILE_PATH_LITERAL("guest_large.jpg"));
|
| options.push_back(std::string("--") +
|
| chromeos::switches::kGuestWallpaperLarge + "=" +
|
| guest_large_file.value());
|
|
|
| const base::FilePath child_small_file =
|
| - dir.path().Append(FILE_PATH_LITERAL("child_small.jpg"));
|
| + dir.GetPath().Append(FILE_PATH_LITERAL("child_small.jpg"));
|
| options.push_back(std::string("--") +
|
| chromeos::switches::kChildWallpaperSmall + "=" +
|
| child_small_file.value());
|
| const base::FilePath child_large_file =
|
| - dir.path().Append(FILE_PATH_LITERAL("child_large.jpg"));
|
| + dir.GetPath().Append(FILE_PATH_LITERAL("child_large.jpg"));
|
| options.push_back(std::string("--") +
|
| chromeos::switches::kChildWallpaperLarge + "=" +
|
| child_large_file.value());
|
|
|