Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / svg / SVGPathSegWithContext.h
index a6502a0..022fd52 100644 (file)
 
 #include "core/svg/SVGPathSeg.h"
 
-namespace WebCore {
+namespace blink {
 
 // FIXME: This should be deprecated.
 class SVGPathSegWithContext : public SVGPathSeg {
 public:
-    // FIXME: remove second unused argument from all derived classes.
-    SVGPathSegWithContext(SVGPathElement* contextElement, SVGPathSegRole)
+    SVGPathSegWithContext(SVGPathElement* contextElement)
         : SVGPathSeg(contextElement)
     {
     }
@@ -51,8 +50,8 @@ public:
     }
 
 protected:
-    SVGPathSegSingleCoordinate(SVGPathElement* element, SVGPathSegRole role, float x, float y)
-        : SVGPathSegWithContext(element, role)
+    SVGPathSegSingleCoordinate(SVGPathElement* element, float x, float y)
+        : SVGPathSegWithContext(element)
         , m_x(x)
         , m_y(y)
     {
@@ -63,6 +62,6 @@ private:
     float m_y;
 };
 
-} // namespace WebCore
+} // namespace blink
 
 #endif