Index: net/disk_cache/cache_util_posix.cc |
diff --git a/net/disk_cache/cache_util_posix.cc b/net/disk_cache/cache_util_posix.cc |
index db1a4ac206278725bea908b45cdc23fb1e3ab85a..40cf9a5321d5cddcb7ec2ebbb3ae7fed9ae3b83c 100644 |
--- a/net/disk_cache/cache_util_posix.cc |
+++ b/net/disk_cache/cache_util_posix.cc |
@@ -28,14 +28,14 @@ bool MoveCache(const base::FilePath& from_path, const base::FilePath& to_path) { |
for (base::FilePath name = iter.Next(); !name.value().empty(); |
name = iter.Next()) { |
base::FilePath destination = to_path.Append(name.BaseName()); |
- if (!file_util::Move(name, destination)) { |
+ if (!base::Move(name, destination)) { |
LOG(ERROR) << "Unable to move cache item."; |
return false; |
} |
} |
return true; |
#else |
- return file_util::Move(from_path, to_path); |
+ return base::Move(from_path, to_path); |
#endif |
} |