| Index: Source/core/svg/SVGFEImageElement.cpp
|
| diff --git a/Source/core/svg/SVGFEImageElement.cpp b/Source/core/svg/SVGFEImageElement.cpp
|
| index 5a367e553b89dfd57ed6ec3552c9d5f47cbec3ac..7f339bd8d3af6ea20a2c63d03236b33a77fc3a03 100644
|
| --- a/Source/core/svg/SVGFEImageElement.cpp
|
| +++ b/Source/core/svg/SVGFEImageElement.cpp
|
| @@ -33,7 +33,7 @@
|
|
|
| namespace WebCore {
|
|
|
| -SVGFEImageElement::SVGFEImageElement(Document& document)
|
| +inline SVGFEImageElement::SVGFEImageElement(Document& document)
|
| : SVGFilterPrimitiveStandardAttributes(SVGNames::feImageTag, document)
|
| , SVGURIReference(this)
|
| , m_preserveAspectRatio(SVGAnimatedPreserveAspectRatio::create(this, SVGNames::preserveAspectRatioAttr, SVGPreserveAspectRatio::create()))
|
| @@ -42,6 +42,8 @@ SVGFEImageElement::SVGFEImageElement(Document& document)
|
| addToPropertyMap(m_preserveAspectRatio);
|
| }
|
|
|
| +DEFINE_NODE_FACTORY(SVGFEImageElement)
|
| +
|
| SVGFEImageElement::~SVGFEImageElement()
|
| {
|
| #if ENABLE(OILPAN)
|
|
|