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

Unified Diff: Source/core/events/OverflowEvent.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/MutationEvent.cpp ('k') | Source/core/events/PageTransitionEvent.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/events/OverflowEvent.cpp
diff --git a/Source/core/events/OverflowEvent.cpp b/Source/core/events/OverflowEvent.cpp
index ae61705817a7eea8e01a9a3b9bb1dd0b0879c8da..2011772e054073352c562f528eb8bd061e157286 100644
--- a/Source/core/events/OverflowEvent.cpp
+++ b/Source/core/events/OverflowEvent.cpp
@@ -41,7 +41,6 @@ OverflowEvent::OverflowEvent()
, m_horizontalOverflow(false)
, m_verticalOverflow(false)
{
- ScriptWrappable::init(this);
}
OverflowEvent::OverflowEvent(bool horizontalOverflowChanged, bool horizontalOverflow, bool verticalOverflowChanged, bool verticalOverflow)
@@ -50,7 +49,6 @@ OverflowEvent::OverflowEvent(bool horizontalOverflowChanged, bool horizontalOver
, m_verticalOverflow(verticalOverflow)
{
ASSERT(horizontalOverflowChanged || verticalOverflowChanged);
- ScriptWrappable::init(this);
if (horizontalOverflowChanged && verticalOverflowChanged)
m_orient = BOTH;
@@ -66,7 +64,6 @@ OverflowEvent::OverflowEvent(const AtomicString& type, const OverflowEventInit&
, m_horizontalOverflow(initializer.horizontalOverflow)
, m_verticalOverflow(initializer.verticalOverflow)
{
- ScriptWrappable::init(this);
}
const AtomicString& OverflowEvent::interfaceName() const
« no previous file with comments | « Source/core/events/MutationEvent.cpp ('k') | Source/core/events/PageTransitionEvent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698