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

Unified Diff: Source/web/PopupContainer.h

Issue 634893002: Replace OVERRIDE and FINAL with override and final in WebKit/public (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 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 | « Source/web/PageOverlay.cpp ('k') | Source/web/PopupContainerTest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/PopupContainer.h
diff --git a/Source/web/PopupContainer.h b/Source/web/PopupContainer.h
index d136ad45dba2a1a805eec88e41fe3ad376466566..1922a8a7d919d2cf278622935288a7b3a5ff97a8 100644
--- a/Source/web/PopupContainer.h
+++ b/Source/web/PopupContainer.h
@@ -47,7 +47,7 @@ struct WebPopupMenuInfo;
// This class wraps a PopupListBox. It positions the popup, paints the border
// around it, and forwards input events.
// FIXME(skobes): This class can probably be combined with PopupListBox.
-class PopupContainer FINAL : public Widget {
+class PopupContainer final : public Widget {
public:
static PassRefPtr<PopupContainer> create(PopupMenuClient*, bool deviceSupportsTouch);
@@ -55,12 +55,12 @@ public:
bool isInterestedInEventForKey(int keyCode);
// Widget
- virtual void paint(GraphicsContext*, const IntRect&) OVERRIDE;
- virtual void hide() OVERRIDE;
- virtual HostWindow* hostWindow() const OVERRIDE;
- virtual void invalidateRect(const IntRect&) OVERRIDE;
- virtual IntPoint convertChildToSelf(const Widget* child, const IntPoint&) const OVERRIDE;
- virtual IntPoint convertSelfToChild(const Widget* child, const IntPoint&) const OVERRIDE;
+ virtual void paint(GraphicsContext*, const IntRect&) override;
+ virtual void hide() override;
+ virtual HostWindow* hostWindow() const override;
+ virtual void invalidateRect(const IntRect&) override;
+ virtual IntPoint convertChildToSelf(const Widget* child, const IntPoint&) const override;
+ virtual IntPoint convertSelfToChild(const Widget* child, const IntPoint&) const override;
// PopupContainer methods
« no previous file with comments | « Source/web/PageOverlay.cpp ('k') | Source/web/PopupContainerTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698