Index: chrome/renderer/spellchecker/cocoa_spelling_engine_mac.h |
diff --git a/chrome/renderer/spellchecker/cocoa_spelling_engine_mac.h b/chrome/renderer/spellchecker/cocoa_spelling_engine_mac.h |
index 0e7c7f43007f115d246493b80ad85a7ff85ab4b1..c99f1c765674f4a3fee9cf396b60c4a4f54c5617 100644 |
--- a/chrome/renderer/spellchecker/cocoa_spelling_engine_mac.h |
+++ b/chrome/renderer/spellchecker/cocoa_spelling_engine_mac.h |
@@ -17,8 +17,9 @@ class CocoaSpellingEngine : public SpellingEngine { |
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 void OnWordAdded(const std::string& word) OVERRIDE; |
- virtual void OnWordRemoved(const std::string& word) OVERRIDE; |
+ virtual void OnWordsAddedRemoved( |
+ const std::vector<std::string>& words_added, |
+ const std::vector<std::string>& words_removed) OVERRIDE; |
}; |
#endif // CHROME_RENDERER_SPELLCHECKER_NSSPELLCHECKER_ENGINE_H_ |