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

Unified Diff: sky/engine/core/events/TransitionEvent.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/TouchEvent.cpp ('k') | sky/engine/core/events/UIEvent.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/core/events/TransitionEvent.cpp
diff --git a/sky/engine/core/events/TransitionEvent.cpp b/sky/engine/core/events/TransitionEvent.cpp
index 740bcb220a0cfd09be824c870d8a4b302432a486..4e1f8f13e84d100b96cb39ced8a400bf162c0143 100644
--- a/sky/engine/core/events/TransitionEvent.cpp
+++ b/sky/engine/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)
@@ -45,7 +44,6 @@ TransitionEvent::TransitionEvent(const AtomicString& type, const String& propert
, m_propertyName(propertyName)
, m_elapsedTime(elapsedTime)
{
- ScriptWrappable::init(this);
}
TransitionEvent::TransitionEvent(const AtomicString& type, const TransitionEventInit& initializer)
@@ -53,7 +51,6 @@ TransitionEvent::TransitionEvent(const AtomicString& type, const TransitionEvent
, m_propertyName(initializer.propertyName)
, m_elapsedTime(initializer.elapsedTime)
{
- ScriptWrappable::init(this);
}
TransitionEvent::~TransitionEvent()
« no previous file with comments | « sky/engine/core/events/TouchEvent.cpp ('k') | sky/engine/core/events/UIEvent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698