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

Unified Diff: Source/core/page/CustomContextMenuProvider.h

Issue 1232333002: Fix virtual/override/final usage in the rest of Source/core/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 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 | « Source/core/page/ChromeClient.h ('k') | Source/core/page/EventSource.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/page/CustomContextMenuProvider.h
diff --git a/Source/core/page/CustomContextMenuProvider.h b/Source/core/page/CustomContextMenuProvider.h
index f7d1a6379e4a491b3e49d6a1ce59942935b9f6b1..08745f63234d4ea2ffe2012923e74cc5ef2d47e1 100644
--- a/Source/core/page/CustomContextMenuProvider.h
+++ b/Source/core/page/CustomContextMenuProvider.h
@@ -18,7 +18,7 @@ class HTMLMenuItemElement;
class CustomContextMenuProvider final : public ContextMenuProvider {
public:
- virtual ~CustomContextMenuProvider();
+ ~CustomContextMenuProvider() override;
static PassRefPtrWillBeRawPtr<CustomContextMenuProvider> create(HTMLMenuElement& menu, HTMLElement& subject)
{
@@ -30,9 +30,9 @@ public:
private:
CustomContextMenuProvider(HTMLMenuElement&, HTMLElement&);
- virtual void populateContextMenu(ContextMenu*) override;
- virtual void contextMenuItemSelected(const ContextMenuItem*) override;
- virtual void contextMenuCleared() override;
+ void populateContextMenu(ContextMenu*) override;
+ void contextMenuItemSelected(const ContextMenuItem*) override;
+ void contextMenuCleared() override;
void populateContextMenuItems(const HTMLMenuElement&, ContextMenu&);
void appendSeparator(ContextMenu&);
void appendMenuItem(HTMLMenuItemElement*, ContextMenu&);
« no previous file with comments | « Source/core/page/ChromeClient.h ('k') | Source/core/page/EventSource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698