Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / svg / SVGFESpecularLightingElement.cpp
index 7ef32e5..c105238 100644 (file)
  */
 
 #include "config.h"
-
 #include "core/svg/SVGFESpecularLightingElement.h"
 
-#include "platform/graphics/filters/FilterEffect.h"
+#include "core/rendering/RenderObject.h"
 #include "core/rendering/style/RenderStyle.h"
 #include "core/svg/SVGParserUtilities.h"
 #include "core/svg/graphics/filters/SVGFilterBuilder.h"
+#include "platform/graphics/filters/FilterEffect.h"
 
 namespace blink {
 
@@ -38,8 +38,6 @@ inline SVGFESpecularLightingElement::SVGFESpecularLightingElement(Document& docu
     , m_kernelUnitLength(SVGAnimatedNumberOptionalNumber::create(this, SVGNames::surfaceScaleAttr))
     , m_in1(SVGAnimatedString::create(this, SVGNames::inAttr, SVGString::create()))
 {
-    ScriptWrappable::init(this);
-
     addToPropertyMap(m_specularConstant);
     addToPropertyMap(m_specularExponent);
     addToPropertyMap(m_surfaceScale);
@@ -186,4 +184,4 @@ PassRefPtr<FilterEffect> SVGFESpecularLightingElement::build(SVGFilterBuilder* f
     return effect.release();
 }
 
-}
+} // namespace blink