| 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 54c64d7c0e2a9ae33f47bc89857eed558bc5502f..b8842643979cf3758615b91780eb0db5f9dd7f01 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGPathElement.h
|
| +++ b/third_party/WebKit/Source/core/svg/SVGPathElement.h
|
| @@ -29,6 +29,8 @@
|
|
|
| namespace blink {
|
|
|
| +class StylePath;
|
| +
|
| class SVGPathElement final : public SVGGeometryElement {
|
| DEFINE_WRAPPERTYPEINFO();
|
| public:
|
| @@ -42,6 +44,7 @@ public:
|
|
|
| SVGAnimatedPath* path() const { return m_path.get(); }
|
| SVGAnimatedNumber* pathLength() const { return m_pathLength.get(); }
|
| + float pathLengthScaleFactor() const;
|
|
|
| const SVGPathByteStream& pathByteStream() const;
|
|
|
| @@ -53,6 +56,8 @@ public:
|
| private:
|
| explicit SVGPathElement(Document&);
|
|
|
| + const StylePath* stylePath() const;
|
| +
|
| void svgAttributeChanged(const QualifiedName&) override;
|
|
|
| void collectStyleForPresentationAttribute(const QualifiedName&, const AtomicString&, MutableStylePropertySet*) override;
|
|
|