| Index: third_party/WebKit/Source/core/svg/SVGPathElement.h
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGPathElement.h b/third_party/WebKit/Source/core/svg/SVGPathElement.h
|
| index c8c1d40e124e34fca512766b9c88861e96e193b2..b51013f79f4e8b1089262674255616b7bb522a3c 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGPathElement.h
|
| +++ b/third_party/WebKit/Source/core/svg/SVGPathElement.h
|
| @@ -43,7 +43,10 @@ public:
|
|
|
| SVGAnimatedNumber* pathLength() { return m_pathLength.get(); }
|
|
|
| - const SVGPathByteStream& pathByteStream() const { return m_path->currentValue()->byteStream(); }
|
| + const SVGPathByteStream& pathByteStream() const;
|
| +
|
| + bool isPresentationAttribute(const QualifiedName&) const override;
|
| + bool isPresentationAttributeWithSVGDOM(const QualifiedName&) const override;
|
|
|
| DECLARE_VIRTUAL_TRACE();
|
|
|
| @@ -52,6 +55,8 @@ private:
|
|
|
| void svgAttributeChanged(const QualifiedName&) override;
|
|
|
| + void collectStyleForPresentationAttribute(const QualifiedName&, const AtomicString&, MutableStylePropertySet*) override;
|
| +
|
| Node::InsertionNotificationRequest insertedInto(ContainerNode*) override;
|
| void removedFrom(ContainerNode*) override;
|
|
|
|
|