Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / svg / SVGPathSegCurvetoCubicAbs.h
index 77c6186..3932645 100644 (file)
 
 #include "core/svg/SVGPathSegCurvetoCubic.h"
 
-namespace WebCore {
+namespace blink {
 
 class SVGPathSegCurvetoCubicAbs FINAL : public SVGPathSegCurvetoCubic {
 public:
-    static PassRefPtr<SVGPathSegCurvetoCubicAbs> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1, float x2, float y2)
+    static PassRefPtr<SVGPathSegCurvetoCubicAbs> create(SVGPathElement* element, float x, float y, float x1, float y1, float x2, float y2)
     {
-        return adoptRef(new SVGPathSegCurvetoCubicAbs(element, role, x, y, x1, y1, x2, y2));
+        return adoptRef(new SVGPathSegCurvetoCubicAbs(element, x, y, x1, y1, x2, y2));
     }
 
 private:
-    SVGPathSegCurvetoCubicAbs(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1, float x2, float y2)
-        : SVGPathSegCurvetoCubic(element, role, x, y, x1, y1, x2, y2)
+    SVGPathSegCurvetoCubicAbs(SVGPathElement* element, float x, float y, float x1, float y1, float x2, float y2)
+        : SVGPathSegCurvetoCubic(element, x, y, x1, y1, x2, y2)
     {
         ScriptWrappable::init(this);
     }
@@ -44,6 +44,6 @@ private:
     virtual String pathSegTypeAsLetter() const OVERRIDE { return "C"; }
 };
 
-} // namespace WebCore
+} // namespace blink
 
 #endif