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

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

Issue 134593005: Update SVG classes to use OVERRIDE / FINAL when needed (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 11 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/SVGPathByteStreamSource.h ('k') | Source/core/svg/SVGPathSegArcAbs.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGPathElement.h
diff --git a/Source/core/svg/SVGPathElement.h b/Source/core/svg/SVGPathElement.h
index 677b600cb4e5c583a2d67bdcc0f04da630c08bd9..42f40acddcea7c500d56e86763de859e1bac2a59 100644
--- a/Source/core/svg/SVGPathElement.h
+++ b/Source/core/svg/SVGPathElement.h
@@ -89,7 +89,7 @@ public:
void pathSegListChanged(SVGPathSegRole, ListModification = ListModificationUnknown);
- virtual SVGRect getBBox() OVERRIDE FINAL;
+ virtual SVGRect getBBox() OVERRIDE;
static const SVGPropertyInfo* dPropertyInfo();
@@ -98,13 +98,13 @@ public:
private:
explicit SVGPathElement(Document&);
- virtual bool isValid() const { return SVGTests::isValid(); }
+ virtual bool isValid() const OVERRIDE { return SVGTests::isValid(); }
virtual bool supportsFocus() const OVERRIDE { return hasFocusEventListeners(); }
bool isSupportedAttribute(const QualifiedName&);
virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE;
- virtual void svgAttributeChanged(const QualifiedName&);
- virtual bool supportsMarkers() const { return true; }
+ virtual void svgAttributeChanged(const QualifiedName&) OVERRIDE;
+ virtual bool supportsMarkers() const OVERRIDE { return true; }
// Custom 'd' property
static void synchronizeD(SVGElement* contextElement);
« no previous file with comments | « Source/core/svg/SVGPathByteStreamSource.h ('k') | Source/core/svg/SVGPathSegArcAbs.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698