| Index: chrome/browser/spellchecker/spellcheck_custom_dictionary.cc
|
| diff --git a/chrome/browser/spellchecker/spellcheck_custom_dictionary.cc b/chrome/browser/spellchecker/spellcheck_custom_dictionary.cc
|
| index 4872b4ead81c957bc25093021d751493ae093128..29f89fc2d0a173754acb50347f5abc1b372cced6 100644
|
| --- a/chrome/browser/spellchecker/spellcheck_custom_dictionary.cc
|
| +++ b/chrome/browser/spellchecker/spellcheck_custom_dictionary.cc
|
| @@ -60,7 +60,7 @@ ChecksumStatus LoadFile(const base::FilePath& file_path, WordList& words) {
|
| DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE));
|
| words.clear();
|
| std::string contents;
|
| - file_util::ReadFileToString(file_path, &contents);
|
| + base::ReadFileToString(file_path, &contents);
|
| size_t pos = contents.rfind(CHECKSUM_PREFIX);
|
| if (pos != std::string::npos) {
|
| std::string checksum = contents.substr(pos + strlen(CHECKSUM_PREFIX));
|
|
|