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

Unified Diff: sky/engine/core/events/AnimationPlayerEvent.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/events/AnimationEvent.cpp ('k') | sky/engine/core/events/CompositionEvent.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/core/events/AnimationPlayerEvent.cpp
diff --git a/sky/engine/core/events/AnimationPlayerEvent.cpp b/sky/engine/core/events/AnimationPlayerEvent.cpp
index 442d15a3cc88c45aaa78eb91a16355c50500105a..b43c782d995cbcd43a563977704cdfcd4f0af800 100644
--- a/sky/engine/core/events/AnimationPlayerEvent.cpp
+++ b/sky/engine/core/events/AnimationPlayerEvent.cpp
@@ -17,7 +17,6 @@ AnimationPlayerEvent::AnimationPlayerEvent()
: m_currentTime(0.0)
, m_timelineTime(0.0)
{
- ScriptWrappable::init(this);
}
AnimationPlayerEvent::AnimationPlayerEvent(const AtomicString& type, double currentTime, double timelineTime)
@@ -25,7 +24,6 @@ AnimationPlayerEvent::AnimationPlayerEvent(const AtomicString& type, double curr
, m_currentTime(currentTime)
, m_timelineTime(timelineTime)
{
- ScriptWrappable::init(this);
}
AnimationPlayerEvent::AnimationPlayerEvent(const AtomicString& type, const AnimationPlayerEventInit& initializer)
@@ -33,7 +31,6 @@ AnimationPlayerEvent::AnimationPlayerEvent(const AtomicString& type, const Anima
, m_currentTime(initializer.currentTime)
, m_timelineTime(initializer.timelineTime)
{
- ScriptWrappable::init(this);
}
AnimationPlayerEvent::~AnimationPlayerEvent()
« no previous file with comments | « sky/engine/core/events/AnimationEvent.cpp ('k') | sky/engine/core/events/CompositionEvent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698