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

Unified Diff: sky/engine/core/events/TextEvent.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/ResourceProgressEvent.cpp ('k') | sky/engine/core/events/TouchEvent.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/core/events/TextEvent.cpp
diff --git a/sky/engine/core/events/TextEvent.cpp b/sky/engine/core/events/TextEvent.cpp
index 087813886249c8a19b668a7297b3b20b55063935..612792e14d215795643fb12de035cfb7f38f1780 100644
--- a/sky/engine/core/events/TextEvent.cpp
+++ b/sky/engine/core/events/TextEvent.cpp
@@ -61,7 +61,6 @@ TextEvent::TextEvent()
, m_shouldSmartReplace(false)
, m_shouldMatchStyle(false)
{
- ScriptWrappable::init(this);
}
TextEvent::TextEvent(PassRefPtr<AbstractView> view, const String& data, TextEventInputType inputType)
@@ -72,7 +71,6 @@ TextEvent::TextEvent(PassRefPtr<AbstractView> view, const String& data, TextEven
, m_shouldSmartReplace(false)
, m_shouldMatchStyle(false)
{
- ScriptWrappable::init(this);
}
TextEvent::TextEvent(PassRefPtr<AbstractView> view, const String& data, PassRefPtr<DocumentFragment> pastingFragment,
@@ -84,7 +82,6 @@ TextEvent::TextEvent(PassRefPtr<AbstractView> view, const String& data, PassRefP
, m_shouldSmartReplace(shouldSmartReplace)
, m_shouldMatchStyle(shouldMatchStyle)
{
- ScriptWrappable::init(this);
}
TextEvent::~TextEvent()
« no previous file with comments | « sky/engine/core/events/ResourceProgressEvent.cpp ('k') | sky/engine/core/events/TouchEvent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698