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

Unified Diff: Source/core/events/TransitionEvent.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/events/TouchEvent.cpp ('k') | Source/core/events/UIEvent.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/events/TransitionEvent.cpp
diff --git a/Source/core/events/TransitionEvent.cpp b/Source/core/events/TransitionEvent.cpp
index f7065e3ed89c42cff802a32a66a23824aa65f66d..0d57e0094a4ce646aaa92cd19ec11f4c65c944fc 100644
--- a/Source/core/events/TransitionEvent.cpp
+++ b/Source/core/events/TransitionEvent.cpp
@@ -37,7 +37,6 @@ TransitionEventInit::TransitionEventInit()
TransitionEvent::TransitionEvent()
: m_elapsedTime(0)
{
- ScriptWrappable::init(this);
}
TransitionEvent::TransitionEvent(const AtomicString& type, const String& propertyName, double elapsedTime, const String& pseudoElement)
@@ -46,7 +45,6 @@ TransitionEvent::TransitionEvent(const AtomicString& type, const String& propert
, m_elapsedTime(elapsedTime)
, m_pseudoElement(pseudoElement)
{
- ScriptWrappable::init(this);
}
TransitionEvent::TransitionEvent(const AtomicString& type, const TransitionEventInit& initializer)
@@ -55,7 +53,6 @@ TransitionEvent::TransitionEvent(const AtomicString& type, const TransitionEvent
, m_elapsedTime(initializer.elapsedTime)
, m_pseudoElement(initializer.pseudoElement)
{
- ScriptWrappable::init(this);
}
TransitionEvent::~TransitionEvent()
« no previous file with comments | « Source/core/events/TouchEvent.cpp ('k') | Source/core/events/UIEvent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698