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

Unified Diff: Source/core/rendering/RenderWidget.h

Issue 640593002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/[css|rendering|clipboard] (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebased the patch 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/core/rendering/RenderView.h ('k') | Source/core/rendering/RenderWordBreak.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/RenderWidget.h
diff --git a/Source/core/rendering/RenderWidget.h b/Source/core/rendering/RenderWidget.h
index bef87cb0235f67b359098714afa7cc621f463b9e..0f43af6f1e846b07fcc73d4367070277b670e932 100644
--- a/Source/core/rendering/RenderWidget.h
+++ b/Source/core/rendering/RenderWidget.h
@@ -41,23 +41,23 @@ public:
void ref() { ++m_refCount; }
void deref();
#endif
- virtual bool isWidget() const OVERRIDE FINAL { return true; }
+ virtual bool isWidget() const override final { return true; }
bool updateWidgetGeometry();
protected:
explicit RenderWidget(Element*);
- virtual void styleDidChange(StyleDifference, const RenderStyle* oldStyle) OVERRIDE FINAL;
- virtual void layout() OVERRIDE;
- virtual void paint(PaintInfo&, const LayoutPoint&) OVERRIDE;
- virtual CursorDirective getCursor(const LayoutPoint&, Cursor&) const OVERRIDE FINAL;
- virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, const HitTestLocation& locationInContainer, const LayoutPoint& accumulatedOffset, HitTestAction) OVERRIDE;
+ virtual void styleDidChange(StyleDifference, const RenderStyle* oldStyle) override final;
+ virtual void layout() override;
+ virtual void paint(PaintInfo&, const LayoutPoint&) override;
+ virtual CursorDirective getCursor(const LayoutPoint&, Cursor&) const override final;
+ virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, const HitTestLocation& locationInContainer, const LayoutPoint& accumulatedOffset, HitTestAction) override;
virtual void paintContents(PaintInfo&, const LayoutPoint&);
private:
- virtual void willBeDestroyed() OVERRIDE FINAL;
- virtual void destroy() OVERRIDE FINAL;
+ virtual void willBeDestroyed() override final;
+ virtual void destroy() override final;
bool setWidgetGeometry(const LayoutRect&);
#if !ENABLE(OILPAN)
« no previous file with comments | « Source/core/rendering/RenderView.h ('k') | Source/core/rendering/RenderWordBreak.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698