summaryrefslogtreecommitdiffstats
path: root/WebCore/svg/SVGAnimateColorElement.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/svg/SVGAnimateColorElement.cpp')
-rw-r--r--WebCore/svg/SVGAnimateColorElement.cpp9
1 files changed, 7 insertions, 2 deletions
diff --git a/WebCore/svg/SVGAnimateColorElement.cpp b/WebCore/svg/SVGAnimateColorElement.cpp
index d5166cf..3960b3e 100644
--- a/WebCore/svg/SVGAnimateColorElement.cpp
+++ b/WebCore/svg/SVGAnimateColorElement.cpp
@@ -25,11 +25,16 @@
namespace WebCore {
-SVGAnimateColorElement::SVGAnimateColorElement(const QualifiedName& tagName, Document* doc)
- : SVGAnimateElement(tagName, doc)
+inline SVGAnimateColorElement::SVGAnimateColorElement(const QualifiedName& tagName, Document* document)
+ : SVGAnimateElement(tagName, document)
{
}
+PassRefPtr<SVGAnimateColorElement> SVGAnimateColorElement::create(const QualifiedName& tagName, Document* document)
+{
+ return adoptRef(new SVGAnimateColorElement(tagName, document));
+}
+
}
// vim:ts=4:noet