X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fthird_party%2FWebKit%2FSource%2Fcore%2Fsvg%2FSVGPathSegCurvetoCubicSmoothAbs.h;h=9a877863f6416c47a0b8f1ff5504505786b92aa8;hb=3545e9f2671f595d2a2f3ee75ca0393b01e35ef6;hp=21cf17cd2a7808aa36e9d579d4dd54d4722c6610;hpb=7d210d4c7e9ba36e635eabc5b5780495f8a63292;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/third_party/WebKit/Source/core/svg/SVGPathSegCurvetoCubicSmoothAbs.h b/src/third_party/WebKit/Source/core/svg/SVGPathSegCurvetoCubicSmoothAbs.h index 21cf17c..9a87786 100644 --- a/src/third_party/WebKit/Source/core/svg/SVGPathSegCurvetoCubicSmoothAbs.h +++ b/src/third_party/WebKit/Source/core/svg/SVGPathSegCurvetoCubicSmoothAbs.h @@ -27,6 +27,7 @@ namespace blink { class SVGPathSegCurvetoCubicSmoothAbs FINAL : public SVGPathSegCurvetoCubicSmooth { + DEFINE_WRAPPERTYPEINFO(); public: static PassRefPtr create(SVGPathElement* element, float x, float y, float x2, float y2) { @@ -35,10 +36,7 @@ public: private: SVGPathSegCurvetoCubicSmoothAbs(SVGPathElement* element, float x, float y, float x2, float y2) - : SVGPathSegCurvetoCubicSmooth(element, x, y, x2, y2) - { - ScriptWrappable::init(this); - } + : SVGPathSegCurvetoCubicSmooth(element, x, y, x2, y2) { } virtual unsigned short pathSegType() const OVERRIDE { return PATHSEG_CURVETO_CUBIC_SMOOTH_ABS; } virtual String pathSegTypeAsLetter() const OVERRIDE { return "S"; } @@ -46,4 +44,4 @@ private: } // namespace blink -#endif +#endif // SVGPathSegCurvetoCubicSmoothAbs_h