diff options
Diffstat (limited to 'Source/WebCore/svg/SVGStyledElement.h')
-rw-r--r-- | Source/WebCore/svg/SVGStyledElement.h | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/Source/WebCore/svg/SVGStyledElement.h b/Source/WebCore/svg/SVGStyledElement.h index 037d22da6..7f5c95a3f 100644 --- a/Source/WebCore/svg/SVGStyledElement.h +++ b/Source/WebCore/svg/SVGStyledElement.h @@ -35,8 +35,6 @@ void mapAttributeToCSSProperty(HashMap<AtomicStringImpl*, CSSPropertyID>* proper class SVGStyledElement : public SVGElement, public SVGStylable { public: - virtual ~SVGStyledElement(); - virtual String title() const; bool hasRelativeLengths() const { return !m_elementsWithRelativeLengths.isEmpty(); } @@ -50,10 +48,6 @@ public: bool instanceUpdatesBlocked() const; void setInstanceUpdatesBlocked(bool); - bool hasPendingResources() const; - void setHasPendingResources(); - void clearHasPendingResourcesIfPossible(); - virtual void animatedPropertyTypeForAttribute(const QualifiedName&, Vector<AnimatedPropertyType>&); static bool isAnimatableCSSProperty(const QualifiedName&); @@ -69,7 +63,7 @@ protected: virtual void parseAttribute(const Attribute&) OVERRIDE; virtual bool isPresentationAttribute(const QualifiedName&) const OVERRIDE; virtual void collectStyleForAttribute(const Attribute&, StylePropertySet*) OVERRIDE; - virtual void svgAttributeChanged(const QualifiedName&); + virtual void svgAttributeChanged(const QualifiedName&) OVERRIDE; virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE; virtual void removedFrom(ContainerNode*) OVERRIDE; @@ -80,7 +74,6 @@ protected: void updateRelativeLengthsInformation(bool hasRelativeLengths, SVGStyledElement*); virtual bool selfHasRelativeLengths() const { return false; } - virtual void buildPendingResource() { } private: virtual bool isStyled() const { return true; } |