summaryrefslogtreecommitdiffstats
path: root/chrome/browser/spellchecker/spellcheck_custom_dictionary_unittest.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/spellchecker/spellcheck_custom_dictionary_unittest.cc')
-rw-r--r--chrome/browser/spellchecker/spellcheck_custom_dictionary_unittest.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/spellchecker/spellcheck_custom_dictionary_unittest.cc b/chrome/browser/spellchecker/spellcheck_custom_dictionary_unittest.cc
index 72c73d6..8fc8849 100644
--- a/chrome/browser/spellchecker/spellcheck_custom_dictionary_unittest.cc
+++ b/chrome/browser/spellchecker/spellcheck_custom_dictionary_unittest.cc
@@ -305,7 +305,7 @@ TEST_F(SpellcheckCustomDictionaryTest, CorruptedWriteShouldBeRecovered) {
change.AddWord("baz");
UpdateDictionaryFile(change, path);
content.clear();
- file_util::ReadFileToString(path, &content);
+ base::ReadFileToString(path, &content);
content.append("corruption");
file_util::WriteFile(path, content.c_str(), content.length());
loaded_custom_words = LoadDictionaryFile(path);