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

Unified Diff: chrome/browser/spellchecker/spellcheck_service.h

Issue 629603002: replace OVERRIDE and FINAL with override and final in chrome/browser/[r-z]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master 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
Index: chrome/browser/spellchecker/spellcheck_service.h
diff --git a/chrome/browser/spellchecker/spellcheck_service.h b/chrome/browser/spellchecker/spellcheck_service.h
index 8ab8bc73c78dccd9c5ce3c97e1c961b56de775b3..a0b22f8bb40844896c7df633aa1ac82ff8fb950e 100644
--- a/chrome/browser/spellchecker/spellcheck_service.h
+++ b/chrome/browser/spellchecker/spellcheck_service.h
@@ -111,18 +111,18 @@ class SpellcheckService : public KeyedService,
// NotificationProfile implementation.
virtual void Observe(int type,
const content::NotificationSource& source,
- const content::NotificationDetails& details) OVERRIDE;
+ const content::NotificationDetails& details) override;
// SpellcheckCustomDictionary::Observer implementation.
- virtual void OnCustomDictionaryLoaded() OVERRIDE;
+ virtual void OnCustomDictionaryLoaded() override;
virtual void OnCustomDictionaryChanged(
- const SpellcheckCustomDictionary::Change& dictionary_change) OVERRIDE;
+ const SpellcheckCustomDictionary::Change& dictionary_change) override;
// SpellcheckHunspellDictionary::Observer implementation.
- virtual void OnHunspellDictionaryInitialized() OVERRIDE;
- virtual void OnHunspellDictionaryDownloadBegin() OVERRIDE;
- virtual void OnHunspellDictionaryDownloadSuccess() OVERRIDE;
- virtual void OnHunspellDictionaryDownloadFailure() OVERRIDE;
+ virtual void OnHunspellDictionaryInitialized() override;
+ virtual void OnHunspellDictionaryDownloadBegin() override;
+ virtual void OnHunspellDictionaryDownloadSuccess() override;
+ virtual void OnHunspellDictionaryDownloadFailure() override;
private:
FRIEND_TEST_ALL_PREFIXES(SpellcheckServiceBrowserTest, DeleteCorruptedBDICT);

Powered by Google App Engine
This is Rietveld 408576698