| Index: Source/core/svg/SVGAnimatedNumberList.h
|
| diff --git a/Source/core/svg/SVGAnimatedNumberList.h b/Source/core/svg/SVGAnimatedNumberList.h
|
| index ea1e2b1561e50bc7b0e73d15ad00910d000cdc3a..da9a364420218c1bc4b8dbe2e0397256828df9f1 100644
|
| --- a/Source/core/svg/SVGAnimatedNumberList.h
|
| +++ b/Source/core/svg/SVGAnimatedNumberList.h
|
| @@ -36,7 +36,19 @@
|
|
|
| namespace blink {
|
|
|
| -typedef SVGAnimatedProperty<SVGNumberList> SVGAnimatedNumberList;
|
| +// SVG Spec: http://www.w3.org/TR/SVG11/types.html#InterfaceSVGAnimatedNumberList
|
| +class SVGAnimatedNumberList final : public SVGAnimatedProperty<SVGNumberList> {
|
| + DEFINE_WRAPPERTYPEINFO();
|
| +public:
|
| + static PassRefPtrWillBeRawPtr<SVGAnimatedNumberList> create(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtrWillBeRawPtr<SVGNumberList> initialValue)
|
| + {
|
| + return adoptRefWillBeNoop(new SVGAnimatedNumberList(contextElement, attributeName, initialValue));
|
| + }
|
| +
|
| +protected:
|
| + SVGAnimatedNumberList(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtrWillBeRawPtr<SVGNumberList> initialValue)
|
| + : SVGAnimatedProperty<SVGNumberList>(contextElement, attributeName, initialValue) { }
|
| +};
|
|
|
| } // namespace blink
|
|
|
|
|