| Index: Source/core/dom/Touch.cpp
|
| diff --git a/Source/core/dom/Touch.cpp b/Source/core/dom/Touch.cpp
|
| index fcf244862bc8b64831f94b7b482110454a21df7a..edc0406c39e77c7e46631a1d4e34714ab71f0bd4 100644
|
| --- a/Source/core/dom/Touch.cpp
|
| +++ b/Source/core/dom/Touch.cpp
|
| @@ -54,7 +54,6 @@ Touch::Touch(LocalFrame* frame, EventTarget* target, unsigned identifier, const
|
| , m_rotationAngle(rotationAngle)
|
| , m_force(force)
|
| {
|
| - ScriptWrappable::init(this);
|
| float scaleFactor = frame ? frame->pageZoomFactor() : 1.0f;
|
| m_absoluteLocation = roundedLayoutPoint(pagePos.scaledBy(scaleFactor));
|
| }
|
| @@ -70,7 +69,6 @@ Touch::Touch(EventTarget* target, unsigned identifier, const FloatPoint& clientP
|
| , m_force(force)
|
| , m_absoluteLocation(absoluteLocation)
|
| {
|
| - ScriptWrappable::init(this);
|
| }
|
|
|
| PassRefPtrWillBeRawPtr<Touch> Touch::cloneWithNewTarget(EventTarget* eventTarget) const
|
|
|