| Index: third_party/WebKit/Source/core/svg/SVGAnimatedTransformList.h
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGAnimatedTransformList.h b/third_party/WebKit/Source/core/svg/SVGAnimatedTransformList.h
|
| index 2a411f25d7dc33daaba55555e0adeeb9118c4569..e5f3100e89df0d2b68ab054c9e9fd12d720cb0e1 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGAnimatedTransformList.h
|
| +++ b/third_party/WebKit/Source/core/svg/SVGAnimatedTransformList.h
|
| @@ -45,9 +45,12 @@ class SVGAnimatedTransformList final
|
| DEFINE_WRAPPERTYPEINFO();
|
|
|
| public:
|
| - static SVGAnimatedTransformList* create(SVGElement* contextElement,
|
| - const QualifiedName& attributeName) {
|
| - return new SVGAnimatedTransformList(contextElement, attributeName);
|
| + static SVGAnimatedTransformList* create(
|
| + SVGElement* contextElement,
|
| + const QualifiedName& attributeName,
|
| + CSSPropertyID cssPropertyId = CSSPropertyInvalid) {
|
| + return new SVGAnimatedTransformList(contextElement, attributeName,
|
| + cssPropertyId);
|
| }
|
|
|
| DEFINE_INLINE_VIRTUAL_TRACE_WRAPPERS() {
|
| @@ -56,10 +59,12 @@ class SVGAnimatedTransformList final
|
|
|
| protected:
|
| SVGAnimatedTransformList(SVGElement* contextElement,
|
| - const QualifiedName& attributeName)
|
| + const QualifiedName& attributeName,
|
| + CSSPropertyID cssPropertyId)
|
| : SVGAnimatedProperty<SVGTransformList>(contextElement,
|
| attributeName,
|
| - SVGTransformList::create()) {}
|
| + SVGTransformList::create(),
|
| + cssPropertyId) {}
|
| };
|
|
|
| } // namespace blink
|
|
|