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

Unified Diff: athena/content/render_view_context_menu_impl.h

Issue 623103002: replace OVERRIDE and FINAL with override and final in athena/ (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
« no previous file with comments | « athena/content/content_activity_factory.h ('k') | athena/content/shell/scheme_classifier_factory.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: athena/content/render_view_context_menu_impl.h
diff --git a/athena/content/render_view_context_menu_impl.h b/athena/content/render_view_context_menu_impl.h
index c12c65f72606bd7f1056fe65b373aae94c7625e2..67585521c129d5d803a06a1644e882f8572fe72a 100644
--- a/athena/content/render_view_context_menu_impl.h
+++ b/athena/content/render_view_context_menu_impl.h
@@ -29,23 +29,23 @@ class RenderViewContextMenuImpl : public RenderViewContextMenuBase {
private:
// 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;
// ui::SimpleMenuModel:
virtual bool GetAcceleratorForCommandId(
int command_id,
- ui::Accelerator* accelerator) 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;
+ ui::Accelerator* accelerator) 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;
DISALLOW_COPY_AND_ASSIGN(RenderViewContextMenuImpl);
};
« no previous file with comments | « athena/content/content_activity_factory.h ('k') | athena/content/shell/scheme_classifier_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698