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 cc3db9a1a693103a4a346e300d957096e5c99bea..c5c8163b0e8bdfc9bf9ee053ad29979db3a7aaf5 100644 |
--- a/chrome/browser/spellchecker/spellcheck_custom_dictionary.cc |
+++ b/chrome/browser/spellchecker/spellcheck_custom_dictionary.cc |
@@ -96,7 +96,7 @@ void LoadDictionaryFileReliably(WordList& custom_words, |
return; |
// Checksum is not valid. See if there's a backup. |
base::FilePath backup = path.AddExtension(BACKUP_EXTENSION); |
- if (!file_util::PathExists(backup)) |
+ if (!base::PathExists(backup)) |
return; |
// Load the backup and verify its checksum. |
if (LoadFile(backup, custom_words) != VALID_CHECKSUM) |