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

Unified Diff: chrome/browser/ui/webui/options/language_options_handler_common.h

Issue 629463003: replace OVERRIDE and FINAL with override and final in chrome/browser/ui/[w-z]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/ui/webui/options/language_options_handler_common.h
diff --git a/chrome/browser/ui/webui/options/language_options_handler_common.h b/chrome/browser/ui/webui/options/language_options_handler_common.h
index 65b45cfd425950f404a37bf1c39d9fdef04bb0c0..a38221c5087317d4b04393877847247f8dc5b2a8 100644
--- a/chrome/browser/ui/webui/options/language_options_handler_common.h
+++ b/chrome/browser/ui/webui/options/language_options_handler_common.h
@@ -27,17 +27,17 @@ class LanguageOptionsHandlerCommon
// OptionsPageUIHandler implementation.
virtual void GetLocalizedValues(
- base::DictionaryValue* localized_strings) OVERRIDE;
- virtual void Uninitialize() OVERRIDE;
+ base::DictionaryValue* localized_strings) override;
+ virtual void Uninitialize() override;
// DOMMessageHandler implementation.
- virtual void RegisterMessages() OVERRIDE;
+ virtual void RegisterMessages() 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;
// The following static methods are public for ease of testing.

Powered by Google App Engine
This is Rietveld 408576698