| Index: chrome/renderer/spellchecker/hunspell_engine.h
|
| diff --git a/chrome/renderer/spellchecker/hunspell_engine.h b/chrome/renderer/spellchecker/hunspell_engine.h
|
| index 534eb87f82d2a2d01c9e0f4f51ac1e2f46ed5857..432928321c906d914d8dcf0c809be14113fb6277 100644
|
| --- a/chrome/renderer/spellchecker/hunspell_engine.h
|
| +++ b/chrome/renderer/spellchecker/hunspell_engine.h
|
| @@ -25,15 +25,15 @@ class HunspellEngine : public SpellingEngine {
|
| HunspellEngine();
|
| virtual ~HunspellEngine();
|
|
|
| - virtual void Init(base::File file) OVERRIDE;
|
| + virtual void Init(base::File file) override;
|
|
|
| - virtual bool InitializeIfNeeded() OVERRIDE;
|
| - virtual bool IsEnabled() OVERRIDE;
|
| + virtual bool InitializeIfNeeded() override;
|
| + virtual bool IsEnabled() override;
|
| virtual bool CheckSpelling(const base::string16& word_to_check,
|
| - int tag) OVERRIDE;
|
| + int tag) override;
|
| virtual void FillSuggestionList(
|
| const base::string16& wrong_word,
|
| - std::vector<base::string16>* optional_suggestions) OVERRIDE;
|
| + std::vector<base::string16>* optional_suggestions) override;
|
|
|
| private:
|
| // Initializes the Hunspell dictionary, or does nothing if |hunspell_| is
|
|
|