summaryrefslogtreecommitdiffstats
path: root/WebCore/svg/SVGFEImageElement.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/svg/SVGFEImageElement.cpp')
-rw-r--r--WebCore/svg/SVGFEImageElement.cpp12
1 files changed, 7 insertions, 5 deletions
diff --git a/WebCore/svg/SVGFEImageElement.cpp b/WebCore/svg/SVGFEImageElement.cpp
index eb024f6..0808ad7 100644
--- a/WebCore/svg/SVGFEImageElement.cpp
+++ b/WebCore/svg/SVGFEImageElement.cpp
@@ -37,14 +37,16 @@
namespace WebCore {
-SVGFEImageElement::SVGFEImageElement(const QualifiedName& tagName, Document* doc)
- : SVGFilterPrimitiveStandardAttributes(tagName, doc)
- , SVGURIReference()
- , SVGLangSpace()
- , SVGExternalResourcesRequired()
+inline SVGFEImageElement::SVGFEImageElement(const QualifiedName& tagName, Document* document)
+ : SVGFilterPrimitiveStandardAttributes(tagName, document)
{
}
+PassRefPtr<SVGFEImageElement> SVGFEImageElement::create(const QualifiedName& tagName, Document* document)
+{
+ return adoptRef(new SVGFEImageElement(tagName, document));
+}
+
SVGFEImageElement::~SVGFEImageElement()
{
if (m_cachedImage)