| Index: chrome/browser/spellchecker/spellcheck_hunspell_dictionary.cc
|
| diff --git a/chrome/browser/spellchecker/spellcheck_hunspell_dictionary.cc b/chrome/browser/spellchecker/spellcheck_hunspell_dictionary.cc
|
| index 44a166dc76e8c37cdf3185c5762be45160c92a4a..17232939ef5f6e1d5646448601bb73a1d439ebc1 100644
|
| --- a/chrome/browser/spellchecker/spellcheck_hunspell_dictionary.cc
|
| +++ b/chrome/browser/spellchecker/spellcheck_hunspell_dictionary.cc
|
| @@ -101,7 +101,7 @@ scoped_ptr<DictionaryFile> OpenDictionaryFile(
|
| NULL,
|
| NULL);
|
| } else {
|
| - file_util::Delete(file->path, false);
|
| + base::Delete(file->path, false);
|
| }
|
|
|
| return file.Pass();
|
| @@ -148,7 +148,7 @@ bool SaveDictionaryData(scoped_ptr<std::string> data,
|
| #endif
|
|
|
| if (!success) {
|
| - file_util::Delete(path, false);
|
| + base::Delete(path, false);
|
| return false;
|
| }
|
| }
|
|
|