X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fthird_party%2FWebKit%2FSource%2Fcore%2Fsvg%2FSVGPathSegWithContext.h;h=022fd526c52d44848df13d674122e63cbf3c8e65;hb=4a1a0bdd01eef90b0826a0e761d3379d3715c10f;hp=a6502a0452ace97a6209389f50c66cc27b96b9b4;hpb=b1be5ca53587d23e7aeb77b26861fdc0a181ffd8;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/third_party/WebKit/Source/core/svg/SVGPathSegWithContext.h b/src/third_party/WebKit/Source/core/svg/SVGPathSegWithContext.h index a6502a0..022fd52 100644 --- a/src/third_party/WebKit/Source/core/svg/SVGPathSegWithContext.h +++ b/src/third_party/WebKit/Source/core/svg/SVGPathSegWithContext.h @@ -22,13 +22,12 @@ #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