| Index: chrome/renderer/spellchecker/spellcheck.h
|
| diff --git a/chrome/renderer/spellchecker/spellcheck.h b/chrome/renderer/spellchecker/spellcheck.h
|
| index fc8760b022ec196b9b4852ae505bce6267abd26e..66eb1baa8477d9a5911be7255030893050b2490f 100644
|
| --- a/chrome/renderer/spellchecker/spellcheck.h
|
| +++ b/chrome/renderer/spellchecker/spellcheck.h
|
| @@ -66,7 +66,7 @@ class SpellCheck : public content::RenderProcessObserver,
|
| int* misspelling_len,
|
| std::vector<string16>* optional_suggestions);
|
|
|
| - // SpellCheck a paragrpah.
|
| + // SpellCheck a paragraph.
|
| // Returns true if |text| is correctly spelled, false otherwise.
|
| // If the spellchecker failed to initialize, always returns true.
|
| bool SpellCheckParagraph(
|
| @@ -118,8 +118,8 @@ class SpellCheck : public content::RenderProcessObserver,
|
| const std::vector<std::string>& custom_words,
|
| const std::string& language,
|
| bool auto_spell_correct);
|
| - void OnWordAdded(const std::string& word);
|
| - void OnWordRemoved(const std::string& word);
|
| + void OnWordsAdded(const std::vector<std::string>& word);
|
| + void OnWordsRemoved(const std::vector<std::string>& word);
|
| void OnEnableAutoSpellCorrect(bool enable);
|
| void OnEnableSpellCheck(bool enable);
|
|
|
|
|