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

Unified Diff: base/files/file_util_proxy_unittest.cc

Issue 18383003: Move DeleteAfterReboot and Move to base namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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
« no previous file with comments | « base/files/file_path_watcher_browsertest.cc ('k') | base/files/important_file_writer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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) {
« no previous file with comments | « base/files/file_path_watcher_browsertest.cc ('k') | base/files/important_file_writer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698