| Index: chrome/renderer/spellchecker/spelling_engine.h
|
| diff --git a/chrome/renderer/spellchecker/spelling_engine.h b/chrome/renderer/spellchecker/spelling_engine.h
|
| index b3b030cf7548767b638628714705b52870f14a83..be8f31b3bba8c51dee77064fb713613b4c845850 100644
|
| --- a/chrome/renderer/spellchecker/spelling_engine.h
|
| +++ b/chrome/renderer/spellchecker/spelling_engine.h
|
| @@ -28,8 +28,8 @@ class SpellingEngine {
|
| virtual bool CheckSpelling(const string16& word_to_check, int tag) = 0;
|
| virtual void FillSuggestionList(const string16& wrong_word,
|
| std::vector<string16>* optional_suggestions) = 0;
|
| - virtual void OnWordAdded(const std::string& word) = 0;
|
| - virtual void OnWordRemoved(const std::string& word) = 0;
|
| + virtual void OnWordsAdded(const std::vector<std::string>& words) = 0;
|
| + virtual void OnWordsRemoved(const std::vector<std::string>& words) = 0;
|
| };
|
|
|
| #endif // CHROME_RENDERER_SPELLCHECKER_SPELLING_ENGINE_H_
|
|
|