| Index: chrome/browser/extensions/extension_creator.cc
|
| diff --git a/chrome/browser/extensions/extension_creator.cc b/chrome/browser/extensions/extension_creator.cc
|
| index 8aa03013075a32c38458aba2e099f6ffbde518e3..cedc048136a4c624b459c31ad9b499d49869b5ad 100644
|
| --- a/chrome/browser/extensions/extension_creator.cc
|
| +++ b/chrome/browser/extensions/extension_creator.cc
|
| @@ -237,7 +237,7 @@ bool ExtensionCreator::WriteCRX(const base::FilePath& zip_path,
|
| const std::vector<uint8>& signature,
|
| const base::FilePath& crx_path) {
|
| if (file_util::PathExists(crx_path))
|
| - file_util::Delete(crx_path, false);
|
| + base::Delete(crx_path, false);
|
| ScopedStdioHandle crx_handle(file_util::OpenFile(crx_path, "wb"));
|
| if (!crx_handle.get()) {
|
| error_message_ = l10n_util::GetStringUTF8(IDS_EXTENSION_SHARING_VIOLATION);
|
| @@ -322,7 +322,7 @@ bool ExtensionCreator::Run(const base::FilePath& extension_dir,
|
| result = true;
|
| }
|
|
|
| - file_util::Delete(zip_path, false);
|
| + base::Delete(zip_path, false);
|
| return result;
|
| }
|
|
|
|
|