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

Unified Diff: Source/core/events/WheelEvent.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/WebKitAnimationEvent.cpp ('k') | Source/core/fileapi/Blob.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/events/WheelEvent.cpp
diff --git a/Source/core/events/WheelEvent.cpp b/Source/core/events/WheelEvent.cpp
index 9b8050ff5029f467a44c7fcfd5ccad6917ee8a54..418b5d14772386fff5a649e0dff72ddf6b0f7a03 100644
--- a/Source/core/events/WheelEvent.cpp
+++ b/Source/core/events/WheelEvent.cpp
@@ -46,7 +46,6 @@ WheelEvent::WheelEvent()
, m_deltaZ(0)
, m_deltaMode(DOM_DELTA_PIXEL)
{
- ScriptWrappable::init(this);
}
WheelEvent::WheelEvent(const AtomicString& type, const WheelEventInit& initializer)
@@ -57,7 +56,6 @@ WheelEvent::WheelEvent(const AtomicString& type, const WheelEventInit& initializ
, m_deltaZ(initializer.deltaZ)
, m_deltaMode(initializer.deltaMode)
{
- ScriptWrappable::init(this);
}
WheelEvent::WheelEvent(const FloatPoint& wheelTicks, const FloatPoint& rawDelta, unsigned deltaMode,
@@ -72,7 +70,6 @@ WheelEvent::WheelEvent(const FloatPoint& wheelTicks, const FloatPoint& rawDelta,
, m_deltaZ(0)
, m_deltaMode(deltaMode)
{
- ScriptWrappable::init(this);
}
const AtomicString& WheelEvent::interfaceName() const
« no previous file with comments | « Source/core/events/WebKitAnimationEvent.cpp ('k') | Source/core/fileapi/Blob.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698