| 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..d00a8d5a44b87dea515bd09507c3662fb5dba115 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 OnCustomDictionaryChanged( | 
| +      const std::vector<std::string>& words_added, | 
| +      const std::vector<std::string>& words_removed) OVERRIDE; | 
| }; | 
|  | 
| #endif  // CHROME_RENDERER_SPELLCHECKER_NSSPELLCHECKER_ENGINE_H_ | 
|  |