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

Unified Diff: Source/core/events/AnimationPlayerEvent.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/editing/DOMSelection.cpp ('k') | Source/core/events/ApplicationCacheErrorEvent.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/events/AnimationPlayerEvent.cpp
diff --git a/Source/core/events/AnimationPlayerEvent.cpp b/Source/core/events/AnimationPlayerEvent.cpp
index 442d15a3cc88c45aaa78eb91a16355c50500105a..b43c782d995cbcd43a563977704cdfcd4f0af800 100644
--- a/Source/core/events/AnimationPlayerEvent.cpp
+++ b/Source/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 | « Source/core/editing/DOMSelection.cpp ('k') | Source/core/events/ApplicationCacheErrorEvent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698