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

Unified Diff: Source/core/rendering/RenderPart.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/RenderPagedFlowThread.h ('k') | Source/core/rendering/RenderProgress.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/RenderPart.h
diff --git a/Source/core/rendering/RenderPart.h b/Source/core/rendering/RenderPart.h
index c042860b81cf4ca050f17f31cac43addf004e972..ef2d56fe11dbe0ae2f6136d227789c9d3339570c 100644
--- a/Source/core/rendering/RenderPart.h
+++ b/Source/core/rendering/RenderPart.h
@@ -35,18 +35,18 @@ public:
bool requiresAcceleratedCompositing() const;
- virtual bool needsPreferredWidthsRecalculation() const OVERRIDE FINAL;
+ virtual bool needsPreferredWidthsRecalculation() const override final;
- virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, const HitTestLocation& locationInContainer, const LayoutPoint& accumulatedOffset, HitTestAction) OVERRIDE;
+ virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, const HitTestLocation& locationInContainer, const LayoutPoint& accumulatedOffset, HitTestAction) override;
protected:
- virtual LayerType layerTypeRequired() const OVERRIDE;
+ virtual LayerType layerTypeRequired() const override;
private:
- virtual bool isRenderPart() const OVERRIDE FINAL { return true; }
- virtual const char* renderName() const OVERRIDE { return "RenderPart"; }
+ virtual bool isRenderPart() const override final { return true; }
+ virtual const char* renderName() const override { return "RenderPart"; }
- virtual CompositingReasons additionalCompositingReasons() const OVERRIDE;
+ virtual CompositingReasons additionalCompositingReasons() const override;
};
DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderPart, isRenderPart());
« no previous file with comments | « Source/core/rendering/RenderPagedFlowThread.h ('k') | Source/core/rendering/RenderProgress.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698