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

Unified Diff: sky/engine/core/events/AnimationEvent.cpp

Issue 706123005: Remove nop ScriptWrappable::init calls (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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 | « sky/engine/core/editing/DOMSelection.cpp ('k') | sky/engine/core/events/AnimationPlayerEvent.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/core/events/AnimationEvent.cpp
diff --git a/sky/engine/core/events/AnimationEvent.cpp b/sky/engine/core/events/AnimationEvent.cpp
index 109e2b0e346749b49989b56e0c4a3e0c2677240b..15fae75c63e20f00371d1eeaa0dbec4e569d31f8 100644
--- a/sky/engine/core/events/AnimationEvent.cpp
+++ b/sky/engine/core/events/AnimationEvent.cpp
@@ -37,7 +37,6 @@ AnimationEventInit::AnimationEventInit()
AnimationEvent::AnimationEvent()
: m_elapsedTime(0.0)
{
- ScriptWrappable::init(this);
}
AnimationEvent::AnimationEvent(const AtomicString& type, const AnimationEventInit& initializer)
@@ -45,7 +44,6 @@ 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,7 +51,6 @@ AnimationEvent::AnimationEvent(const AtomicString& type, const String& animation
, m_animationName(animationName)
, m_elapsedTime(elapsedTime)
{
- ScriptWrappable::init(this);
}
AnimationEvent::~AnimationEvent()
« no previous file with comments | « sky/engine/core/editing/DOMSelection.cpp ('k') | sky/engine/core/events/AnimationPlayerEvent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698