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

Unified Diff: chrome/browser/renderer_context_menu/spelling_menu_observer.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/renderer_context_menu/spelling_menu_observer.h
diff --git a/chrome/browser/renderer_context_menu/spelling_menu_observer.h b/chrome/browser/renderer_context_menu/spelling_menu_observer.h
index d20afddbf8803ef803952aab8bb15639ea96597b..c6db4f3c63c488f2cb834398213a5b41783e2c1f 100644
--- a/chrome/browser/renderer_context_menu/spelling_menu_observer.h
+++ b/chrome/browser/renderer_context_menu/spelling_menu_observer.h
@@ -43,12 +43,12 @@ class SpellingMenuObserver : public RenderViewContextMenuObserver {
virtual ~SpellingMenuObserver();
// RenderViewContextMenuObserver implementation.
- virtual void InitMenu(const content::ContextMenuParams& params) OVERRIDE;
- virtual bool IsCommandIdSupported(int command_id) OVERRIDE;
- virtual bool IsCommandIdChecked(int command_id) OVERRIDE;
- virtual bool IsCommandIdEnabled(int command_id) OVERRIDE;
- virtual void ExecuteCommand(int command_id) OVERRIDE;
- virtual void OnMenuCancel() OVERRIDE;
+ virtual void InitMenu(const content::ContextMenuParams& params) override;
+ virtual bool IsCommandIdSupported(int command_id) override;
+ virtual bool IsCommandIdChecked(int command_id) override;
+ virtual bool IsCommandIdEnabled(int command_id) override;
+ virtual void ExecuteCommand(int command_id) override;
+ virtual void OnMenuCancel() override;
// A callback function called when the Spelling service finishes checking a
// misspelled word.

Powered by Google App Engine
This is Rietveld 408576698