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

Unified Diff: Source/core/svg/SVGGraphicsElement.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/SVGGradientElement.h ('k') | Source/core/svg/SVGHKernElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGGraphicsElement.h
diff --git a/Source/core/svg/SVGGraphicsElement.h b/Source/core/svg/SVGGraphicsElement.h
index f4347a9ca5d3f32c32ab3ffee9d7fa2275cac6b3..325e2bf0c1591c91c42dcb4dbe6da9611bbd6b8e 100644
--- a/Source/core/svg/SVGGraphicsElement.h
+++ b/Source/core/svg/SVGGraphicsElement.h
@@ -50,18 +50,18 @@ public:
SVGElement* nearestViewportElement() const;
SVGElement* farthestViewportElement() const;
- virtual AffineTransform localCoordinateSpaceTransform(SVGElement::CTMScope) const OVERRIDE { return animatedLocalTransform(); }
+ virtual AffineTransform localCoordinateSpaceTransform(SVGElement::CTMScope) const override { return animatedLocalTransform(); }
virtual AffineTransform animatedLocalTransform() const;
- virtual AffineTransform* supplementalTransform() OVERRIDE;
+ virtual AffineTransform* supplementalTransform() override;
virtual FloatRect getBBox();
PassRefPtr<SVGRectTearOff> getBBoxFromJavascript();
// "base class" methods for all the elements which render as paths
virtual void toClipPath(Path&);
- virtual RenderObject* createRenderer(RenderStyle*) OVERRIDE;
+ virtual RenderObject* createRenderer(RenderStyle*) override;
- virtual bool isValid() const OVERRIDE FINAL { return SVGTests::isValid(); }
+ virtual bool isValid() const override final { return SVGTests::isValid(); }
SVGAnimatedTransformList* transform() { return m_transform.get(); }
const SVGAnimatedTransformList* transform() const { return m_transform.get(); }
@@ -72,16 +72,16 @@ public:
protected:
SVGGraphicsElement(const QualifiedName&, Document&, ConstructionType = CreateSVGElement);
- virtual bool supportsFocus() const OVERRIDE { return Element::supportsFocus() || hasFocusEventListeners(); }
+ virtual bool supportsFocus() const override { return Element::supportsFocus() || hasFocusEventListeners(); }
bool isSupportedAttribute(const QualifiedName&);
- virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE;
- virtual void svgAttributeChanged(const QualifiedName&) OVERRIDE;
+ virtual void parseAttribute(const QualifiedName&, const AtomicString&) override;
+ virtual void svgAttributeChanged(const QualifiedName&) override;
RefPtr<SVGAnimatedTransformList> m_transform;
private:
- virtual bool isSVGGraphicsElement() const OVERRIDE FINAL { return true; }
+ virtual bool isSVGGraphicsElement() const override final { return true; }
// Used by <animateMotion>
OwnPtr<AffineTransform> m_supplementalTransform;
« no previous file with comments | « Source/core/svg/SVGGradientElement.h ('k') | Source/core/svg/SVGHKernElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698