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