diff options
Diffstat (limited to 'chrome/browser/android/crash_dump_manager.cc')
-rw-r--r-- | chrome/browser/android/crash_dump_manager.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/android/crash_dump_manager.cc b/chrome/browser/android/crash_dump_manager.cc index a7c2c19..eb41d2c 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: " << |