Index: chrome/browser/extensions/api/downloads/downloads_api_unittest.cc |
diff --git a/chrome/browser/extensions/api/downloads/downloads_api_unittest.cc b/chrome/browser/extensions/api/downloads/downloads_api_unittest.cc |
index b3f08d058aa635c184589c5f7f0a0492bf98be7a..0bb0c1f97b4429e535d74f206a3f02019809833c 100644 |
--- a/chrome/browser/extensions/api/downloads/downloads_api_unittest.cc |
+++ b/chrome/browser/extensions/api/downloads/downloads_api_unittest.cc |
@@ -1130,8 +1130,8 @@ IN_PROC_BROWSER_TEST_F(DownloadExtensionTest, |
base::FilePath fake_path = all_downloads[1]->GetTargetFilePath(); |
EXPECT_EQ(0, file_util::WriteFile(real_path, "", 0)); |
- ASSERT_TRUE(file_util::PathExists(real_path)); |
- ASSERT_FALSE(file_util::PathExists(fake_path)); |
+ ASSERT_TRUE(base::PathExists(real_path)); |
+ ASSERT_FALSE(base::PathExists(fake_path)); |
for (DownloadManager::DownloadVector::iterator iter = all_downloads.begin(); |
iter != all_downloads.end(); |