X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fthird_party%2FWebKit%2FSource%2Fcore%2Fsvg%2FSVGPathSegMovetoAbs.h;h=67dd160eab38038d015fa85e68618f278bba5e96;hb=3545e9f2671f595d2a2f3ee75ca0393b01e35ef6;hp=0c68f96278678b5243cb25bc92f51767aea86e15;hpb=7d210d4c7e9ba36e635eabc5b5780495f8a63292;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/third_party/WebKit/Source/core/svg/SVGPathSegMovetoAbs.h b/src/third_party/WebKit/Source/core/svg/SVGPathSegMovetoAbs.h index 0c68f96..67dd160 100644 --- a/src/third_party/WebKit/Source/core/svg/SVGPathSegMovetoAbs.h +++ b/src/third_party/WebKit/Source/core/svg/SVGPathSegMovetoAbs.h @@ -27,6 +27,7 @@ namespace blink { class SVGPathSegMovetoAbs FINAL : public SVGPathSegSingleCoordinate { + DEFINE_WRAPPERTYPEINFO(); public: static PassRefPtr create(SVGPathElement* element, float x, float y) { @@ -35,10 +36,7 @@ public: private: SVGPathSegMovetoAbs(SVGPathElement* element, float x, float y) - : SVGPathSegSingleCoordinate(element, x, y) - { - ScriptWrappable::init(this); - } + : SVGPathSegSingleCoordinate(element, x, y) { } virtual unsigned short pathSegType() const OVERRIDE { return PATHSEG_MOVETO_ABS; } virtual String pathSegTypeAsLetter() const OVERRIDE { return "M"; } @@ -46,4 +44,4 @@ private: } // namespace blink -#endif +#endif // SVGPathSegMovetoAbs_h