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

Unified Diff: Source/core/rendering/svg/RenderSVGTransformableContainer.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
Index: Source/core/rendering/svg/RenderSVGTransformableContainer.h
diff --git a/Source/core/rendering/svg/RenderSVGTransformableContainer.h b/Source/core/rendering/svg/RenderSVGTransformableContainer.h
index 1103a3b38855a09218788056ebe2450d4350b2cb..bd13833b3ace4d31b6d36c7d8a87d7b0b6ead46e 100644
--- a/Source/core/rendering/svg/RenderSVGTransformableContainer.h
+++ b/Source/core/rendering/svg/RenderSVGTransformableContainer.h
@@ -26,20 +26,20 @@
namespace blink {
class SVGGraphicsElement;
-class RenderSVGTransformableContainer FINAL : public RenderSVGContainer {
+class RenderSVGTransformableContainer final : public RenderSVGContainer {
public:
explicit RenderSVGTransformableContainer(SVGGraphicsElement*);
- virtual bool isChildAllowed(RenderObject*, RenderStyle*) const OVERRIDE;
+ virtual bool isChildAllowed(RenderObject*, RenderStyle*) const override;
- virtual bool isSVGTransformableContainer() const OVERRIDE { return true; }
- virtual const AffineTransform& localToParentTransform() const OVERRIDE { return m_localTransform; }
- virtual void setNeedsTransformUpdate() OVERRIDE { m_needsTransformUpdate = true; }
- virtual bool didTransformToRootUpdate() OVERRIDE { return m_didTransformToRootUpdate; }
+ virtual bool isSVGTransformableContainer() const override { return true; }
+ virtual const AffineTransform& localToParentTransform() const override { return m_localTransform; }
+ virtual void setNeedsTransformUpdate() override { m_needsTransformUpdate = true; }
+ virtual bool didTransformToRootUpdate() override { return m_didTransformToRootUpdate; }
private:
- virtual bool calculateLocalTransform() OVERRIDE;
- virtual AffineTransform localTransform() const OVERRIDE { return m_localTransform; }
+ virtual bool calculateLocalTransform() override;
+ virtual AffineTransform localTransform() const override { return m_localTransform; }
bool m_needsTransformUpdate : 1;
bool m_didTransformToRootUpdate : 1;
« no previous file with comments | « Source/core/rendering/svg/RenderSVGTextPath.h ('k') | Source/core/rendering/svg/RenderSVGViewportContainer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698