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

Unified Diff: chrome/browser/renderer_context_menu/spellchecker_submenu_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/spellchecker_submenu_observer.h
diff --git a/chrome/browser/renderer_context_menu/spellchecker_submenu_observer.h b/chrome/browser/renderer_context_menu/spellchecker_submenu_observer.h
index 7d54bae9c0305d7beb97443c82ba1cd877a041f7..bd0fa392f7c6ba4c1262dfa3eb2c2168de561116 100644
--- a/chrome/browser/renderer_context_menu/spellchecker_submenu_observer.h
+++ b/chrome/browser/renderer_context_menu/spellchecker_submenu_observer.h
@@ -25,11 +25,11 @@ class SpellCheckerSubMenuObserver : public RenderViewContextMenuObserver {
virtual ~SpellCheckerSubMenuObserver();
// 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 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;
private:
// The interface for adding a submenu to the parent.

Powered by Google App Engine
This is Rietveld 408576698