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

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

Issue 1212253012: Fix virtual/override/final usage in Source/core/svg/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 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/svg/SVGSVGElement.h
diff --git a/Source/core/svg/SVGSVGElement.h b/Source/core/svg/SVGSVGElement.h
index 9e41f0e38f21b130edf8fbef9ae765919bab49e5..dfa5822200e43176e9017361661fabfa82d0b7b5 100644
--- a/Source/core/svg/SVGSVGElement.h
+++ b/Source/core/svg/SVGSVGElement.h
@@ -124,28 +124,28 @@ public:
private:
explicit SVGSVGElement(Document&);
- virtual ~SVGSVGElement();
+ ~SVGSVGElement() override;
- virtual void parseAttribute(const QualifiedName&, const AtomicString&) override;
- virtual bool isPresentationAttribute(const QualifiedName&) const override;
- virtual bool isPresentationAttributeWithSVGDOM(const QualifiedName&) const override;
- virtual void collectStyleForPresentationAttribute(const QualifiedName&, const AtomicString&, MutableStylePropertySet*) override;
+ void parseAttribute(const QualifiedName&, const AtomicString&) override;
+ bool isPresentationAttribute(const QualifiedName&) const override;
+ bool isPresentationAttributeWithSVGDOM(const QualifiedName&) const override;
+ void collectStyleForPresentationAttribute(const QualifiedName&, const AtomicString&, MutableStylePropertySet*) override;
- virtual bool layoutObjectIsNeeded(const ComputedStyle&) override;
- virtual LayoutObject* createLayoutObject(const ComputedStyle&) override;
+ bool layoutObjectIsNeeded(const ComputedStyle&) override;
+ LayoutObject* createLayoutObject(const ComputedStyle&) override;
- virtual InsertionNotificationRequest insertedInto(ContainerNode*) override;
- virtual void removedFrom(ContainerNode*) override;
+ InsertionNotificationRequest insertedInto(ContainerNode*) override;
+ void removedFrom(ContainerNode*) override;
- virtual void svgAttributeChanged(const QualifiedName&) override;
+ void svgAttributeChanged(const QualifiedName&) override;
- virtual bool selfHasRelativeLengths() const override;
+ bool selfHasRelativeLengths() const override;
void inheritViewAttributes(SVGViewElement*);
void updateCurrentTranslate();
- virtual void finishParsingChildren() override;
+ void finishParsingChildren() override;
enum CheckIntersectionOrEnclosure {
CheckIntersection,
@@ -160,7 +160,7 @@ private:
RefPtrWillBeMember<SVGAnimatedLength> m_width;
RefPtrWillBeMember<SVGAnimatedLength> m_height;
- virtual AffineTransform localCoordinateSpaceTransform(SVGElement::CTMScope) const override;
+ AffineTransform localCoordinateSpaceTransform(SVGElement::CTMScope) const override;
bool m_useCurrentView;
RefPtrWillBeMember<SMILTimeContainer> m_timeContainer;

Powered by Google App Engine
This is Rietveld 408576698