summaryrefslogtreecommitdiffstats
path: root/chrome/installer/util/self_cleaning_temp_dir_unittest.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/installer/util/self_cleaning_temp_dir_unittest.cc')
-rw-r--r--chrome/installer/util/self_cleaning_temp_dir_unittest.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/installer/util/self_cleaning_temp_dir_unittest.cc b/chrome/installer/util/self_cleaning_temp_dir_unittest.cc
index 7366211..9ff3425 100644
--- a/chrome/installer/util/self_cleaning_temp_dir_unittest.cc
+++ b/chrome/installer/util/self_cleaning_temp_dir_unittest.cc
@@ -161,8 +161,8 @@ TEST_F(SelfCleaningTempDirTest, LeaveUsedOnDestroy) {
EXPECT_TRUE(base::DirectoryExists(temp_dir.path()));
// Drop a file somewhere.
EXPECT_EQ(arraysize(kHiHon) - 1,
- file_util::WriteFile(parent_temp_dir.Append(GetRandomFilename()),
- kHiHon, arraysize(kHiHon) - 1));
+ base::WriteFile(parent_temp_dir.Append(GetRandomFilename()),
+ kHiHon, arraysize(kHiHon) - 1));
}
EXPECT_FALSE(base::DirectoryExists(parent_temp_dir.Append(L"Three")));
EXPECT_TRUE(base::DirectoryExists(parent_temp_dir));