diff options
Diffstat (limited to 'chrome/browser/spellcheck_host.cc')
-rw-r--r-- | chrome/browser/spellcheck_host.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/spellcheck_host.cc b/chrome/browser/spellcheck_host.cc index 2d4bef545..545eaaa 100644 --- a/chrome/browser/spellcheck_host.cc +++ b/chrome/browser/spellcheck_host.cc @@ -125,7 +125,7 @@ int SpellCheckHost::GetSpellCheckLanguages( if (SpellCheckerPlatform::SpellCheckerAvailable()) SpellCheckerPlatform::GetAvailableLanguages(&accept_languages); else - SplitString(accept_languages_pref.GetValue(), ',', &accept_languages); + base::SplitString(accept_languages_pref.GetValue(), ',', &accept_languages); for (std::vector<std::string>::const_iterator i = accept_languages.begin(); i != accept_languages.end(); ++i) { @@ -189,7 +189,7 @@ void SpellCheckHost::InitializeInternal() { std::string contents; file_util::ReadFileToString(custom_dictionary_file_, &contents); std::vector<std::string> list_of_words; - SplitString(contents, '\n', &list_of_words); + base::SplitString(contents, '\n', &list_of_words); for (size_t i = 0; i < list_of_words.size(); ++i) custom_words_.push_back(list_of_words[i]); } |