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

Unified Diff: chrome/browser/renderer_context_menu/render_view_context_menu.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/render_view_context_menu.h
diff --git a/chrome/browser/renderer_context_menu/render_view_context_menu.h b/chrome/browser/renderer_context_menu/render_view_context_menu.h
index a2a65a48240737cdf68b6da4dd407e4fba26c1d3..3b3eefe8e3bc98615ba7a736e4eb7b3c046e8e6a 100644
--- a/chrome/browser/renderer_context_menu/render_view_context_menu.h
+++ b/chrome/browser/renderer_context_menu/render_view_context_menu.h
@@ -54,9 +54,9 @@ class RenderViewContextMenu : public RenderViewContextMenuBase {
virtual ~RenderViewContextMenu();
// SimpleMenuModel::Delegate:
- virtual bool IsCommandIdChecked(int command_id) const OVERRIDE;
- virtual bool IsCommandIdEnabled(int command_id) const OVERRIDE;
- virtual void ExecuteCommand(int command_id, int event_flags) OVERRIDE;
+ virtual bool IsCommandIdChecked(int command_id) const override;
+ virtual bool IsCommandIdEnabled(int command_id) const override;
+ virtual void ExecuteCommand(int command_id, int event_flags) override;
protected:
Profile* GetProfile();
@@ -76,15 +76,15 @@ class RenderViewContextMenu : public RenderViewContextMenuBase {
const extensions::MenuItem* item);
// RenderViewContextMenuBase:
- virtual void InitMenu() OVERRIDE;
- virtual void RecordShownItem(int id) OVERRIDE;
- virtual void RecordUsedItem(int id) OVERRIDE;
+ virtual void InitMenu() override;
+ virtual void RecordShownItem(int id) override;
+ virtual void RecordUsedItem(int id) override;
#if defined(ENABLE_PLUGINS)
- virtual void HandleAuthorizeAllPlugins() OVERRIDE;
+ virtual void HandleAuthorizeAllPlugins() override;
#endif
- virtual void NotifyMenuShown() OVERRIDE;
+ virtual void NotifyMenuShown() override;
virtual void NotifyURLOpened(const GURL& url,
- content::WebContents* new_contents) OVERRIDE;
+ content::WebContents* new_contents) override;
// Gets the extension (if any) associated with the WebContents that we're in.
const extensions::Extension* GetExtension() const;

Powered by Google App Engine
This is Rietveld 408576698