| 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 c50a3e5b4a869fe4183d96fa0b41fb39a54e5fa6..56744aca5734c357bd5df99fd1b29d8e39940305 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGPathElement.h
|
| +++ b/third_party/WebKit/Source/core/svg/SVGPathElement.h
|
| @@ -43,6 +43,11 @@ public:
|
| SVGAnimatedPath* path() { return m_path.get(); }
|
| SVGAnimatedNumber* pathLength() { return m_pathLength.get(); }
|
|
|
| + const SVGPathByteStream& pathByteStream() const;
|
| +
|
| + bool isPresentationAttribute(const QualifiedName&) const override;
|
| + bool isPresentationAttributeWithSVGDOM(const QualifiedName&) const override;
|
| +
|
| DECLARE_VIRTUAL_TRACE();
|
|
|
| private:
|
| @@ -50,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;
|
|
|
|
|