Index: chrome/renderer/spellchecker/hunspell_engine.h |
diff --git a/chrome/renderer/spellchecker/hunspell_engine.h b/chrome/renderer/spellchecker/hunspell_engine.h |
index b58aa806fa74d2f42ff7e5c26fb480eb2b51e473..fbd8ac8915351c5b62edf6cfe3f37ca844e986e5 100644 |
--- a/chrome/renderer/spellchecker/hunspell_engine.h |
+++ b/chrome/renderer/spellchecker/hunspell_engine.h |
@@ -29,9 +29,11 @@ class HunspellEngine : public SpellingEngine { |
virtual bool InitializeIfNeeded() OVERRIDE; |
virtual bool IsEnabled() OVERRIDE; |
- virtual bool CheckSpelling(const string16& word_to_check, int tag) OVERRIDE; |
- virtual void FillSuggestionList(const string16& wrong_word, |
- std::vector<string16>* optional_suggestions) OVERRIDE; |
+ virtual bool CheckSpelling(const base::string16& word_to_check, |
+ int tag) OVERRIDE; |
+ virtual void FillSuggestionList( |
+ const base::string16& wrong_word, |
+ std::vector<base::string16>* optional_suggestions) OVERRIDE; |
private: |
// Initializes the Hunspell dictionary, or does nothing if |hunspell_| is |