Index: base/files/file_util_proxy_unittest.cc |
diff --git a/base/files/file_util_proxy_unittest.cc b/base/files/file_util_proxy_unittest.cc |
index a4ba57187e53a357428e5c5055a9aa526c7d0117..f524ba489c89f2578e1ecd3aa4f3fc5e05ed70cc 100644 |
--- a/base/files/file_util_proxy_unittest.cc |
+++ b/base/files/file_util_proxy_unittest.cc |
@@ -169,7 +169,7 @@ TEST_F(FileUtilProxyTest, Close) { |
#if defined(OS_WIN) |
// This fails on Windows if the file is not closed. |
- EXPECT_FALSE(file_util::Move(test_path(), |
+ EXPECT_FALSE(base::Move(test_path(), |
test_dir_path().AppendASCII("new"))); |
#endif |
@@ -181,7 +181,7 @@ TEST_F(FileUtilProxyTest, Close) { |
EXPECT_EQ(PLATFORM_FILE_OK, error_); |
// Now it should pass on all platforms. |
- EXPECT_TRUE(file_util::Move(test_path(), test_dir_path().AppendASCII("new"))); |
+ EXPECT_TRUE(base::Move(test_path(), test_dir_path().AppendASCII("new"))); |
} |
TEST_F(FileUtilProxyTest, CreateTemporary) { |