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 2a55d5935af746cb07dd5a261876b2ebaf59880d..bbd00b0cc17e1ac9d190d1df36f0538964bd9d54 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* insertionPoint, Node* next) override; |