| 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 a7c2c198d189b6954824e6237518a7321b0af3a6..eb41d2c925f255b34514a28fcee500882e1ae60e 100644
|
| --- a/chrome/browser/android/crash_dump_manager.cc
|
| +++ b/chrome/browser/android/crash_dump_manager.cc
|
| @@ -91,7 +91,7 @@ void CrashDumpManager::ProcessMinidump(const base::FilePath& minidump_path,
|
|
|
| if (file_size == 0) {
|
| // Empty minidump, this process did not crash. Just remove the file.
|
| - r = file_util::Delete(minidump_path, false);
|
| + r = base::Delete(minidump_path, false);
|
| DCHECK(r) << "Failed to delete temporary minidump file "
|
| << minidump_path.value();
|
| return;
|
| @@ -115,7 +115,7 @@ void CrashDumpManager::ProcessMinidump(const base::FilePath& minidump_path,
|
| if (!r) {
|
| LOG(ERROR) << "Failed to move crash dump from " << minidump_path.value()
|
| << " to " << dest_path.value();
|
| - file_util::Delete(minidump_path, false);
|
| + base::Delete(minidump_path, false);
|
| return;
|
| }
|
| LOG(INFO) << "Crash minidump successfully generated: " <<
|
|
|