Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(992)

Unified Diff: Source/core/svg/SVGPathSegLinetoVertical.h

Issue 15492007: Make SVG objects ScriptWrappable. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix indent Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/svg/SVGPathSegLinetoHorizontal.h ('k') | Source/core/svg/SVGPathSegMoveto.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGPathSegLinetoVertical.h
diff --git a/Source/core/svg/SVGPathSegLinetoVertical.h b/Source/core/svg/SVGPathSegLinetoVertical.h
index 34a98e69c798f1b0ab91dd7f1c34260110abb63c..9fb4d8c3ec09e084f3f06e4b970fdf8d626a07e0 100644
--- a/Source/core/svg/SVGPathSegLinetoVertical.h
+++ b/Source/core/svg/SVGPathSegLinetoVertical.h
@@ -55,6 +55,7 @@ private:
SVGPathSegLinetoVerticalAbs(SVGPathElement* element, SVGPathSegRole role, float y)
: SVGPathSegLinetoVertical(element, role, y)
{
+ ScriptWrappable::init(this);
}
virtual unsigned short pathSegType() const { return PATHSEG_LINETO_VERTICAL_ABS; }
@@ -72,6 +73,7 @@ private:
SVGPathSegLinetoVerticalRel(SVGPathElement* element, SVGPathSegRole role, float y)
: SVGPathSegLinetoVertical(element, role, y)
{
+ ScriptWrappable::init(this);
}
virtual unsigned short pathSegType() const { return PATHSEG_LINETO_VERTICAL_REL; }
« no previous file with comments | « Source/core/svg/SVGPathSegLinetoHorizontal.h ('k') | Source/core/svg/SVGPathSegMoveto.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698