X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fthird_party%2FWebKit%2FSource%2Fcore%2Fsvg%2FSVGPathSegCurvetoCubicAbs.h;h=393264587cf352a35bb3bc2e680e82001d49a1c8;hb=4a1a0bdd01eef90b0826a0e761d3379d3715c10f;hp=77c618609ad959404ef80c8343f44120abc8966d;hpb=b1be5ca53587d23e7aeb77b26861fdc0a181ffd8;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/third_party/WebKit/Source/core/svg/SVGPathSegCurvetoCubicAbs.h b/src/third_party/WebKit/Source/core/svg/SVGPathSegCurvetoCubicAbs.h index 77c6186..3932645 100644 --- a/src/third_party/WebKit/Source/core/svg/SVGPathSegCurvetoCubicAbs.h +++ b/src/third_party/WebKit/Source/core/svg/SVGPathSegCurvetoCubicAbs.h @@ -24,18 +24,18 @@ #include "core/svg/SVGPathSegCurvetoCubic.h" -namespace WebCore { +namespace blink { class SVGPathSegCurvetoCubicAbs FINAL : public SVGPathSegCurvetoCubic { public: - static PassRefPtr create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1, float x2, float y2) + static PassRefPtr 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