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

Unified Diff: Source/core/events/CompositionEvent.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/BeforeUnloadEvent.cpp ('k') | Source/core/events/CustomEvent.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/events/CompositionEvent.cpp
diff --git a/Source/core/events/CompositionEvent.cpp b/Source/core/events/CompositionEvent.cpp
index 3c1767fa88bcc79dc49f7cd85d981a8e1a57006e..0dd11747a4ffaabc962d7d6fe632a110f79286d6 100644
--- a/Source/core/events/CompositionEvent.cpp
+++ b/Source/core/events/CompositionEvent.cpp
@@ -37,7 +37,6 @@ CompositionEvent::CompositionEvent()
: m_activeSegmentStart(0)
, m_activeSegmentEnd(0)
{
- ScriptWrappable::init(this);
initializeSegments();
}
@@ -47,7 +46,6 @@ CompositionEvent::CompositionEvent(const AtomicString& type, PassRefPtrWillBeRaw
, m_activeSegmentStart(0)
, m_activeSegmentEnd(0)
{
- ScriptWrappable::init(this);
initializeSegments(&underlines);
}
@@ -57,7 +55,6 @@ CompositionEvent::CompositionEvent(const AtomicString& type, const CompositionEv
, m_activeSegmentStart(0)
, m_activeSegmentEnd(0)
{
- ScriptWrappable::init(this);
initializeSegments();
}
« no previous file with comments | « Source/core/events/BeforeUnloadEvent.cpp ('k') | Source/core/events/CustomEvent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698