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

Unified Diff: Source/core/svg/SVGMatrixTearOff.cpp

Issue 540283003: bindings: Retires ScriptWrappable::init, etc. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Addressed a review comment. Created 6 years, 3 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/SVGMaskElement.cpp ('k') | Source/core/svg/SVGMetadataElement.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGMatrixTearOff.cpp
diff --git a/Source/core/svg/SVGMatrixTearOff.cpp b/Source/core/svg/SVGMatrixTearOff.cpp
index 5795b04788c1a92169100f3cf0cc2139b559de03..5578c202c91e7e0223ebf9d594c1b5d3dd20dce0 100644
--- a/Source/core/svg/SVGMatrixTearOff.cpp
+++ b/Source/core/svg/SVGMatrixTearOff.cpp
@@ -41,14 +41,12 @@ SVGMatrixTearOff::SVGMatrixTearOff(const AffineTransform& staticValue)
: m_staticValue(staticValue)
, m_contextTransform(0)
{
- ScriptWrappable::init(this);
}
SVGMatrixTearOff::SVGMatrixTearOff(SVGTransformTearOff* transform)
: m_contextTransform(transform)
{
ASSERT(transform);
- ScriptWrappable::init(this);
}
SVGMatrixTearOff::~SVGMatrixTearOff()
« no previous file with comments | « Source/core/svg/SVGMaskElement.cpp ('k') | Source/core/svg/SVGMetadataElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698