| Index: chrome/browser/android/crash_dump_manager.cc
|
| diff --git a/chrome/browser/android/crash_dump_manager.cc b/chrome/browser/android/crash_dump_manager.cc
|
| index eb41d2c925f255b34514a28fcee500882e1ae60e..6ee4e0463fd096fc3c40b681c6a5338b0e66e7de 100644
|
| --- a/chrome/browser/android/crash_dump_manager.cc
|
| +++ b/chrome/browser/android/crash_dump_manager.cc
|
| @@ -111,7 +111,7 @@ void CrashDumpManager::ProcessMinidump(const base::FilePath& minidump_path,
|
| base::StringPrintf("chromium-renderer-minidump-%016" PRIx64 ".dmp%d",
|
| rand, pid);
|
| base::FilePath dest_path = crash_dump_dir.Append(filename);
|
| - r = file_util::Move(minidump_path, dest_path);
|
| + r = base::Move(minidump_path, dest_path);
|
| if (!r) {
|
| LOG(ERROR) << "Failed to move crash dump from " << minidump_path.value()
|
| << " to " << dest_path.value();
|
|
|