Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / svg / SVGFEMorphologyElement.h
index 4d356c9..ccf5d0f 100644 (file)
@@ -25,7 +25,7 @@
 #include "core/svg/SVGFilterPrimitiveStandardAttributes.h"
 #include "platform/graphics/filters/FEMorphology.h"
 
-namespace WebCore {
+namespace blink {
 
 template<> const SVGEnumerationStringEntries& getStaticStringEntries<MorphologyOperatorType>();
 
@@ -33,8 +33,6 @@ class SVGFEMorphologyElement FINAL : public SVGFilterPrimitiveStandardAttributes
 public:
     DECLARE_NODE_FACTORY(SVGFEMorphologyElement);
 
-    void setRadius(float radiusX, float radiusY);
-
     SVGAnimatedNumber* radiusX() { return m_radius->firstNumber(); }
     SVGAnimatedNumber* radiusY() { return m_radius->secondNumber(); }
     SVGAnimatedString* in1() { return m_in1.get(); }
@@ -54,6 +52,6 @@ private:
     RefPtr<SVGAnimatedEnumeration<MorphologyOperatorType> > m_svgOperator;
 };
 
-} // namespace WebCore
+} // namespace blink
 
 #endif