Index: Source/core/svg/SVGAnimatedNumberList.h |
diff --git a/Source/core/svg/SVGAnimatedNumberList.h b/Source/core/svg/SVGAnimatedNumberList.h |
index ea1e2b1561e50bc7b0e73d15ad00910d000cdc3a..ef475fc81e7c246c99f9fefd6a83b8666632b049 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 : public SVGAnimatedProperty<SVGNumberList> { |
+ DEFINE_WRAPPERTYPEINFO(); |
+public: |
+ static PassRefPtr<SVGAnimatedNumberList> create(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtr<SVGNumberList> initialValue) |
haraken
2014/11/13 07:46:38
PassRefPtrWillBeRawPtr
Yuki
2014/11/13 08:30:00
Done.
|
+ { |
+ return adoptRef(new SVGAnimatedNumberList(contextElement, attributeName, initialValue)); |
haraken
2014/11/13 07:46:38
adoptRefWillBeNoop
Yuki
2014/11/13 08:30:00
Done.
|
+ } |
+ |
+protected: |
+ SVGAnimatedNumberList(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtr<SVGNumberList> initialValue) |
haraken
2014/11/13 07:46:38
PassRefPtrWillBeRawPtr
Yuki
2014/11/13 08:30:00
Done.
|
+ : SVGAnimatedProperty<SVGNumberList>(contextElement, attributeName, initialValue) { } |
+}; |
} // namespace blink |