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

Unified Diff: Source/core/svg/SVGSVGElement.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/SVGRenderingIntent.h ('k') | Source/core/svg/SVGSVGElement.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGSVGElement.h
diff --git a/Source/core/svg/SVGSVGElement.h b/Source/core/svg/SVGSVGElement.h
index 4b0130f66aec86a7fce5794a5f36dcd6287520cd..f098e02c209073fee783653ff988ef5f967a8cfc 100644
--- a/Source/core/svg/SVGSVGElement.h
+++ b/Source/core/svg/SVGSVGElement.h
@@ -40,7 +40,7 @@ class SVGViewSpec;
class SVGViewElement;
class SMILTimeContainer;
-class SVGSVGElement FINAL : public SVGGraphicsElement,
+class SVGSVGElement final : public SVGGraphicsElement,
public SVGFitToViewBox,
public SVGZoomAndPan {
DEFINE_WRAPPERTYPEINFO();
@@ -117,31 +117,31 @@ public:
SVGAnimatedLength* width() const { return m_width.get(); }
SVGAnimatedLength* height() const { return m_height.get(); }
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
private:
explicit SVGSVGElement(Document&);
virtual ~SVGSVGElement();
- virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE;
- virtual bool isPresentationAttribute(const QualifiedName&) const OVERRIDE;
- virtual void collectStyleForPresentationAttribute(const QualifiedName&, const AtomicString&, MutableStylePropertySet*) OVERRIDE;
+ virtual void parseAttribute(const QualifiedName&, const AtomicString&) override;
+ virtual bool isPresentationAttribute(const QualifiedName&) const override;
+ virtual void collectStyleForPresentationAttribute(const QualifiedName&, const AtomicString&, MutableStylePropertySet*) override;
- virtual bool rendererIsNeeded(const RenderStyle&) OVERRIDE;
- virtual RenderObject* createRenderer(RenderStyle*) OVERRIDE;
+ virtual bool rendererIsNeeded(const RenderStyle&) override;
+ virtual RenderObject* createRenderer(RenderStyle*) override;
- virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE;
- virtual void removedFrom(ContainerNode*) OVERRIDE;
+ virtual InsertionNotificationRequest insertedInto(ContainerNode*) override;
+ virtual void removedFrom(ContainerNode*) override;
- virtual void svgAttributeChanged(const QualifiedName&) OVERRIDE;
+ virtual void svgAttributeChanged(const QualifiedName&) override;
- virtual bool selfHasRelativeLengths() const OVERRIDE;
+ virtual bool selfHasRelativeLengths() const override;
void inheritViewAttributes(SVGViewElement*);
void updateCurrentTranslate();
- virtual void finishParsingChildren() OVERRIDE;
+ virtual void finishParsingChildren() override;
enum CheckIntersectionOrEnclosure {
CheckIntersection,
@@ -156,7 +156,7 @@ private:
RefPtr<SVGAnimatedLength> m_width;
RefPtr<SVGAnimatedLength> m_height;
- virtual AffineTransform localCoordinateSpaceTransform(SVGElement::CTMScope) const OVERRIDE;
+ virtual AffineTransform localCoordinateSpaceTransform(SVGElement::CTMScope) const override;
bool m_useCurrentView;
RefPtrWillBeMember<SMILTimeContainer> m_timeContainer;
« no previous file with comments | « Source/core/svg/SVGRenderingIntent.h ('k') | Source/core/svg/SVGSVGElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698