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 c5c10b160165c664437b479a123a36fbe201f196..2a411f25d7dc33daaba55555e0adeeb9118c4569 100644 |
--- a/third_party/WebKit/Source/core/svg/SVGAnimatedTransformList.h |
+++ b/third_party/WebKit/Source/core/svg/SVGAnimatedTransformList.h |
@@ -46,10 +46,8 @@ class SVGAnimatedTransformList final |
public: |
static SVGAnimatedTransformList* create(SVGElement* contextElement, |
- const QualifiedName& attributeName, |
- SVGTransformList* initialValue) { |
- return new SVGAnimatedTransformList(contextElement, attributeName, |
- initialValue); |
+ const QualifiedName& attributeName) { |
+ return new SVGAnimatedTransformList(contextElement, attributeName); |
} |
DEFINE_INLINE_VIRTUAL_TRACE_WRAPPERS() { |
@@ -58,11 +56,10 @@ class SVGAnimatedTransformList final |
protected: |
SVGAnimatedTransformList(SVGElement* contextElement, |
- const QualifiedName& attributeName, |
- SVGTransformList* initialValue) |
+ const QualifiedName& attributeName) |
: SVGAnimatedProperty<SVGTransformList>(contextElement, |
attributeName, |
- initialValue) {} |
+ SVGTransformList::create()) {} |
}; |
} // namespace blink |