| Index: chrome/browser/chromeos/drive/file_cache.cc
|
| diff --git a/chrome/browser/chromeos/drive/file_cache.cc b/chrome/browser/chromeos/drive/file_cache.cc
|
| index 35a960bfdf8f23ebe5df7d3fecbcc515f7b26f75..2fbce2179750379950e7393a90a7295bcb260440 100644
|
| --- a/chrome/browser/chromeos/drive/file_cache.cc
|
| +++ b/chrome/browser/chromeos/drive/file_cache.cc
|
| @@ -81,7 +81,7 @@ void ScanCacheDirectory(const base::FilePath& directory_path,
|
| // Moves the file.
|
| bool MoveFile(const base::FilePath& source_path,
|
| const base::FilePath& dest_path) {
|
| - if (!file_util::Move(source_path, dest_path)) {
|
| + if (!base::Move(source_path, dest_path)) {
|
| LOG(ERROR) << "Failed to move " << source_path.value()
|
| << " to " << dest_path.value();
|
| return false;
|
|
|