Index: chrome/renderer/spellchecker/spellcheck.h |
diff --git a/chrome/renderer/spellchecker/spellcheck.h b/chrome/renderer/spellchecker/spellcheck.h |
index 58032be4f855fa0604d2188690025bdda3cd700e..c44c698dd56ac9804fa3bd74288a11c582c37548 100644 |
--- a/chrome/renderer/spellchecker/spellcheck.h |
+++ b/chrome/renderer/spellchecker/spellcheck.h |
@@ -45,7 +45,7 @@ class SpellCheck : public content::RenderProcessObserver, |
// TODO: Try to move that all to SpellcheckLanguage. |
void Init(base::PlatformFile file, |
- const std::vector<std::string>& custom_words, |
+ const std::set<std::string>& custom_words, |
const std::string& language); |
// If there is no dictionary file, then this requests one from the browser |
@@ -119,7 +119,7 @@ class SpellCheck : public content::RenderProcessObserver, |
// Message handlers. |
void OnInit(IPC::PlatformFileForTransit bdict_file, |
- const std::vector<std::string>& custom_words, |
+ const std::set<std::string>& custom_words, |
const std::string& language, |
bool auto_spell_correct); |
void OnCustomDictionaryChanged( |