summaryrefslogtreecommitdiffstats
path: root/chrome/browser/spellchecker/spellcheck_service.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/spellchecker/spellcheck_service.h')
-rw-r--r--chrome/browser/spellchecker/spellcheck_service.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/chrome/browser/spellchecker/spellcheck_service.h b/chrome/browser/spellchecker/spellcheck_service.h
index 86805ce..81956f8 100644
--- a/chrome/browser/spellchecker/spellcheck_service.h
+++ b/chrome/browser/spellchecker/spellcheck_service.h
@@ -124,10 +124,12 @@ class SpellcheckService : public KeyedService,
const SpellcheckCustomDictionary::Change& dictionary_change) override;
// SpellcheckHunspellDictionary::Observer implementation.
- void OnHunspellDictionaryInitialized() override;
- void OnHunspellDictionaryDownloadBegin() override;
- void OnHunspellDictionaryDownloadSuccess() override;
- void OnHunspellDictionaryDownloadFailure() override;
+ void OnHunspellDictionaryInitialized(const std::string& language) override;
+ void OnHunspellDictionaryDownloadBegin(const std::string& language) override;
+ void OnHunspellDictionaryDownloadSuccess(
+ const std::string& language) override;
+ void OnHunspellDictionaryDownloadFailure(
+ const std::string& language) override;
private:
FRIEND_TEST_ALL_PREFIXES(SpellcheckServiceBrowserTest, DeleteCorruptedBDICT);