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

Unified Diff: Source/WebCore/css/WebKitCSSMatrix.cpp

Issue 13814002: First part of work to move V8 binding integrity off of vtables. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 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/WebCore/css/CSSStyleDeclaration.h ('k') | Source/WebCore/dom/AnimationEvent.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/WebCore/css/WebKitCSSMatrix.cpp
diff --git a/Source/WebCore/css/WebKitCSSMatrix.cpp b/Source/WebCore/css/WebKitCSSMatrix.cpp
index 5188b66b87dac3b2d17241c419373e101fb270a4..7764449d0eeaf0b71559314cfe8c0a4e0f625d35 100644
--- a/Source/WebCore/css/WebKitCSSMatrix.cpp
+++ b/Source/WebCore/css/WebKitCSSMatrix.cpp
@@ -39,10 +39,12 @@ namespace WebCore {
WebKitCSSMatrix::WebKitCSSMatrix(const TransformationMatrix& m)
: m_matrix(m)
{
+ ScriptWrappable::init(this);
}
WebKitCSSMatrix::WebKitCSSMatrix(const String& s, ExceptionCode& ec)
{
+ ScriptWrappable::init(this);
setMatrixValue(s, ec);
}
« no previous file with comments | « Source/WebCore/css/CSSStyleDeclaration.h ('k') | Source/WebCore/dom/AnimationEvent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698