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 |