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

Unified Diff: Source/WebCore/dom/AnimationEvent.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/WebKitCSSMatrix.cpp ('k') | Source/WebCore/dom/Attr.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/WebCore/dom/AnimationEvent.cpp
diff --git a/Source/WebCore/dom/AnimationEvent.cpp b/Source/WebCore/dom/AnimationEvent.cpp
index 3e7d18793f26edad5a7380942251e7bc686ef68e..fd183caa4c481060c1a7a6780515d54a4bd7eff5 100644
--- a/Source/WebCore/dom/AnimationEvent.cpp
+++ b/Source/WebCore/dom/AnimationEvent.cpp
@@ -39,6 +39,7 @@ AnimationEventInit::AnimationEventInit()
AnimationEvent::AnimationEvent()
: m_elapsedTime(0.0)
{
+ ScriptWrappable::init(this);
}
AnimationEvent::AnimationEvent(const AtomicString& type, const AnimationEventInit& initializer)
@@ -46,6 +47,7 @@ AnimationEvent::AnimationEvent(const AtomicString& type, const AnimationEventIni
, m_animationName(initializer.animationName)
, m_elapsedTime(initializer.elapsedTime)
{
+ ScriptWrappable::init(this);
}
AnimationEvent::AnimationEvent(const AtomicString& type, const String& animationName, double elapsedTime)
@@ -53,6 +55,7 @@ AnimationEvent::AnimationEvent(const AtomicString& type, const String& animation
, m_animationName(animationName)
, m_elapsedTime(elapsedTime)
{
+ ScriptWrappable::init(this);
}
AnimationEvent::~AnimationEvent()
« no previous file with comments | « Source/WebCore/css/WebKitCSSMatrix.cpp ('k') | Source/WebCore/dom/Attr.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698