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

Unified Diff: Source/web/WebPagePopupImpl.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/WebNodeTest.cpp ('k') | Source/web/WebPagePopupImpl.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebPagePopupImpl.h
diff --git a/Source/web/WebPagePopupImpl.h b/Source/web/WebPagePopupImpl.h
index dd6b2abce37358823cea04456658531343f4e73f..a09ccd2209b118a26b3cf2f3d252a51fdd3d0367 100644
--- a/Source/web/WebPagePopupImpl.h
+++ b/Source/web/WebPagePopupImpl.h
@@ -49,7 +49,7 @@ class WebLayer;
class WebViewImpl;
class LocalDOMWindow;
-class WebPagePopupImpl FINAL
+class WebPagePopupImpl final
: public WebPagePopup
, public PageWidgetEventHandler
, public PagePopup
@@ -65,30 +65,30 @@ public:
WebWidgetClient* widgetClient() const { return m_widgetClient; }
bool hasSamePopupClient(WebPagePopupImpl* other) { return other && m_popupClient == other->m_popupClient; }
LocalDOMWindow* window();
- virtual void compositeAndReadbackAsync(WebCompositeAndReadbackAsyncCallback*) OVERRIDE;
- virtual WebPoint positionRelativeToOwner() OVERRIDE;
+ virtual void compositeAndReadbackAsync(WebCompositeAndReadbackAsyncCallback*) override;
+ virtual WebPoint positionRelativeToOwner() override;
private:
// WebWidget functions
- virtual WebSize size() OVERRIDE;
- virtual void beginFrame(const WebBeginFrameArgs&) OVERRIDE;
- virtual void layout() OVERRIDE;
- virtual void willCloseLayerTreeView() OVERRIDE;
- virtual void paint(WebCanvas*, const WebRect&) OVERRIDE;
- virtual void resize(const WebSize&) OVERRIDE;
- virtual void close() OVERRIDE;
- virtual bool handleInputEvent(const WebInputEvent&) OVERRIDE;
- virtual void setFocus(bool) OVERRIDE;
- virtual bool isPagePopup() const OVERRIDE { return true; }
- virtual bool isAcceleratedCompositingActive() const OVERRIDE { return m_isAcceleratedCompositingActive; }
+ virtual WebSize size() override;
+ virtual void beginFrame(const WebBeginFrameArgs&) override;
+ virtual void layout() override;
+ virtual void willCloseLayerTreeView() override;
+ virtual void paint(WebCanvas*, const WebRect&) override;
+ virtual void resize(const WebSize&) override;
+ virtual void close() override;
+ virtual bool handleInputEvent(const WebInputEvent&) override;
+ virtual void setFocus(bool) override;
+ virtual bool isPagePopup() const override { return true; }
+ virtual bool isAcceleratedCompositingActive() const override { return m_isAcceleratedCompositingActive; }
// PageWidgetEventHandler functions
- virtual bool handleKeyEvent(const WebKeyboardEvent&) OVERRIDE;
- virtual bool handleCharEvent(const WebKeyboardEvent&) OVERRIDE;
- virtual bool handleGestureEvent(const WebGestureEvent&) OVERRIDE;
+ virtual bool handleKeyEvent(const WebKeyboardEvent&) override;
+ virtual bool handleCharEvent(const WebKeyboardEvent&) override;
+ virtual bool handleGestureEvent(const WebGestureEvent&) override;
// PagePopup function
- virtual AXObject* rootAXObject() OVERRIDE;
+ virtual AXObject* rootAXObject() override;
explicit WebPagePopupImpl(WebWidgetClient*);
bool initializePage();
« no previous file with comments | « Source/web/WebNodeTest.cpp ('k') | Source/web/WebPagePopupImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698