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

Unified Diff: sky/engine/core/events/CustomEvent.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/CompositionEvent.cpp ('k') | sky/engine/core/events/ErrorEvent.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/core/events/CustomEvent.cpp
diff --git a/sky/engine/core/events/CustomEvent.cpp b/sky/engine/core/events/CustomEvent.cpp
index 6bdc856451be95fcdc868728fa2cac5bc654980a..e9d8d666029affffab0510b8fa03a1d1556db334 100644
--- a/sky/engine/core/events/CustomEvent.cpp
+++ b/sky/engine/core/events/CustomEvent.cpp
@@ -32,13 +32,11 @@ namespace blink {
CustomEvent::CustomEvent()
{
- ScriptWrappable::init(this);
}
CustomEvent::CustomEvent(const AtomicString& type, const CustomEventInit& initializer)
: Event(type, initializer)
{
- ScriptWrappable::init(this);
}
CustomEvent::~CustomEvent()
« no previous file with comments | « sky/engine/core/events/CompositionEvent.cpp ('k') | sky/engine/core/events/ErrorEvent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698