| 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..9d40b07c1c8a0db2d6e7820db284d81ab548f2ee 100644
|
| --- a/chrome/renderer/spellchecker/spelling_engine.h
|
| +++ b/chrome/renderer/spellchecker/spelling_engine.h
|
| @@ -26,10 +26,12 @@ class SpellingEngine {
|
| virtual bool InitializeIfNeeded() = 0;
|
| virtual bool IsEnabled() = 0;
|
| 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 FillSuggestionList(
|
| + const string16& wrong_word,
|
| + std::vector<string16>* optional_suggestions) = 0;
|
| + virtual void OnCustomDictionaryChanged(
|
| + const std::vector<std::string>& words_added,
|
| + const std::vector<std::string>& words_removed) = 0;
|
| };
|
|
|
| #endif // CHROME_RENDERER_SPELLCHECKER_SPELLING_ENGINE_H_
|
|
|