| 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;
|
|
|