Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(579)

Unified Diff: chrome/browser/chromeos/login/wallpaper_manager_browsertest.cc

Issue 18286004: Move PathExists to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/login/wallpaper_manager_browsertest.cc
diff --git a/chrome/browser/chromeos/login/wallpaper_manager_browsertest.cc b/chrome/browser/chromeos/login/wallpaper_manager_browsertest.cc
index 77b3be6dd906dbded7e1e99b96e20fd7e98e2f73..77833c019dcb58b8c25998d246553dfdb90c9cae 100644
--- a/chrome/browser/chromeos/login/wallpaper_manager_browsertest.cc
+++ b/chrome/browser/chromeos/login/wallpaper_manager_browsertest.cc
@@ -291,8 +291,8 @@ IN_PROC_BROWSER_TEST_F(WallpaperManagerBrowserTest,
EXPECT_EQ(3, LoadedWallpapers());
base::FilePath new_wallpaper_path = GetCustomWallpaperPath(
kOriginalWallpaperSubDir, kTestUser1, "DUMMY");
- EXPECT_FALSE(file_util::PathExists(old_wallpaper_path));
- EXPECT_TRUE(file_util::PathExists(new_wallpaper_path));
+ EXPECT_FALSE(base::PathExists(old_wallpaper_path));
+ EXPECT_TRUE(base::PathExists(new_wallpaper_path));
}
// Some users have old user profiles which may have legacy wallpapers. And these
« no previous file with comments | « chrome/browser/chromeos/login/wallpaper_manager.cc ('k') | chrome/browser/chromeos/mobile/mobile_activator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698