| Index: third_party/WebKit/Source/core/svg/SVGAnimatedPath.h
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGAnimatedPath.h b/third_party/WebKit/Source/core/svg/SVGAnimatedPath.h
|
| index ccf24613d5253ee086912905d04d00724100fbcc..4502c6b0b06e831131d49feb318df549a791f070 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGAnimatedPath.h
|
| +++ b/third_party/WebKit/Source/core/svg/SVGAnimatedPath.h
|
| @@ -40,13 +40,17 @@ class SVGAnimatedPath : public SVGAnimatedProperty<SVGPath> {
|
| public:
|
| ~SVGAnimatedPath() override;
|
|
|
| - static SVGAnimatedPath* create(SVGElement* contextElement,
|
| - const QualifiedName& attributeName) {
|
| - return new SVGAnimatedPath(contextElement, attributeName);
|
| + static SVGAnimatedPath* create(
|
| + SVGElement* contextElement,
|
| + const QualifiedName& attributeName,
|
| + CSSPropertyID cssPropertyId = CSSPropertyInvalid) {
|
| + return new SVGAnimatedPath(contextElement, attributeName, cssPropertyId);
|
| }
|
|
|
| protected:
|
| - SVGAnimatedPath(SVGElement*, const QualifiedName&);
|
| + SVGAnimatedPath(SVGElement*,
|
| + const QualifiedName&,
|
| + CSSPropertyID = CSSPropertyInvalid);
|
| };
|
|
|
| } // namespace blink
|
|
|