| Index: chrome/browser/extensions/sandboxed_unpacker.cc
|
| diff --git a/chrome/browser/extensions/sandboxed_unpacker.cc b/chrome/browser/extensions/sandboxed_unpacker.cc
|
| index 80241b75e4ac9c704f486814b495bf33bb89f776..91b4cbc4d29a4cdaa293d308065ff0e6e1f89b87 100644
|
| --- a/chrome/browser/extensions/sandboxed_unpacker.cc
|
| +++ b/chrome/browser/extensions/sandboxed_unpacker.cc
|
| @@ -141,7 +141,7 @@ bool VerifyJunctionFreeLocation(base::FilePath* temp_dir) {
|
| *temp_dir = normalized_temp_file.DirName();
|
| }
|
| // Clean up the temp file.
|
| - file_util::Delete(temp_file, false);
|
| + base::Delete(temp_file, false);
|
|
|
| return normalized;
|
| }
|
| @@ -661,7 +661,7 @@ bool SandboxedUnpacker::RewriteImageFiles() {
|
| ASCIIToUTF16("INVALID_PATH_FOR_BROWSER_IMAGE")));
|
| return false;
|
| }
|
| - if (!file_util::Delete(extension_root_.Append(path), false)) {
|
| + if (!base::Delete(extension_root_.Append(path), false)) {
|
| // Error removing old image file.
|
| ReportFailure(
|
| ERROR_REMOVING_OLD_IMAGE_FILE,
|
|
|