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

Unified Diff: Source/core/events/MouseEvent.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/MessageEvent.cpp ('k') | Source/core/events/MutationEvent.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/events/MouseEvent.cpp
diff --git a/Source/core/events/MouseEvent.cpp b/Source/core/events/MouseEvent.cpp
index a2bb5aa82b8320d9d978decb2f23108db40dddd9..b875392efae6270299157517467d31203ea4265d 100644
--- a/Source/core/events/MouseEvent.cpp
+++ b/Source/core/events/MouseEvent.cpp
@@ -81,7 +81,6 @@ MouseEvent::MouseEvent()
: m_button(0)
, m_buttonDown(false)
{
- ScriptWrappable::init(this);
}
MouseEvent::MouseEvent(const AtomicString& eventType, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView> view,
@@ -100,7 +99,6 @@ MouseEvent::MouseEvent(const AtomicString& eventType, bool canBubble, bool cance
, m_dataTransfer(dataTransfer)
, m_syntheticEventType(syntheticEventType)
{
- ScriptWrappable::init(this);
}
MouseEvent::MouseEvent(const AtomicString& eventType, const MouseEventInit& initializer)
@@ -113,7 +111,6 @@ MouseEvent::MouseEvent(const AtomicString& eventType, const MouseEventInit& init
, m_relatedTarget(initializer.relatedTarget)
, m_dataTransfer(nullptr)
{
- ScriptWrappable::init(this);
initCoordinates(IntPoint(initializer.clientX, initializer.clientY));
}
« no previous file with comments | « Source/core/events/MessageEvent.cpp ('k') | Source/core/events/MutationEvent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698