Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4932)

Unified Diff: chrome/renderer/spellchecker/hunspell_engine.h

Issue 630603003: Replacing the OVERRIDE with override in chrome/renderer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased the patch Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/renderer/spellchecker/cocoa_spelling_engine_mac.h ('k') | chrome/renderer/spellchecker/spellcheck.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « chrome/renderer/spellchecker/cocoa_spelling_engine_mac.h ('k') | chrome/renderer/spellchecker/spellcheck.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698