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

Unified Diff: Source/core/svg/SVGPatternElement.h

Issue 631153003: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/svg (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/core/svg/SVGPathTraversalStateBuilder.h ('k') | Source/core/svg/SVGPoint.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGPatternElement.h
diff --git a/Source/core/svg/SVGPatternElement.h b/Source/core/svg/SVGPatternElement.h
index 8d36d272a2b2792d77fe58a3ee48b5e0f2c0aa93..192f953d3a4b612d396d109bfc1bfe9c4dfa4296 100644
--- a/Source/core/svg/SVGPatternElement.h
+++ b/Source/core/svg/SVGPatternElement.h
@@ -36,7 +36,7 @@ namespace blink {
struct PatternAttributes;
-class SVGPatternElement FINAL : public SVGElement,
+class SVGPatternElement final : public SVGElement,
public SVGURIReference,
public SVGTests,
public SVGFitToViewBox {
@@ -46,7 +46,7 @@ public:
void collectPatternAttributes(PatternAttributes&) const;
- virtual AffineTransform localCoordinateSpaceTransform(SVGElement::CTMScope) const OVERRIDE;
+ virtual AffineTransform localCoordinateSpaceTransform(SVGElement::CTMScope) const override;
SVGAnimatedLength* x() const { return m_x.get(); }
SVGAnimatedLength* y() const { return m_y.get(); }
@@ -62,17 +62,17 @@ public:
private:
explicit SVGPatternElement(Document&);
- virtual bool isValid() const OVERRIDE { return SVGTests::isValid(); }
- virtual bool needsPendingResourceHandling() const OVERRIDE { return false; }
+ virtual bool isValid() const override { return SVGTests::isValid(); }
+ virtual bool needsPendingResourceHandling() const override { return false; }
bool isSupportedAttribute(const QualifiedName&);
- virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE;
- virtual void svgAttributeChanged(const QualifiedName&) OVERRIDE;
- virtual void childrenChanged(const ChildrenChange&) OVERRIDE;
+ virtual void parseAttribute(const QualifiedName&, const AtomicString&) override;
+ virtual void svgAttributeChanged(const QualifiedName&) override;
+ virtual void childrenChanged(const ChildrenChange&) override;
- virtual RenderObject* createRenderer(RenderStyle*) OVERRIDE;
+ virtual RenderObject* createRenderer(RenderStyle*) override;
- virtual bool selfHasRelativeLengths() const OVERRIDE;
+ virtual bool selfHasRelativeLengths() const override;
RefPtr<SVGAnimatedLength> m_x;
RefPtr<SVGAnimatedLength> m_y;
« no previous file with comments | « Source/core/svg/SVGPathTraversalStateBuilder.h ('k') | Source/core/svg/SVGPoint.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698