| Index: Source/core/dom/Touch.cpp
|
| diff --git a/Source/core/dom/Touch.cpp b/Source/core/dom/Touch.cpp
|
| index 7633d907261dbe431ba5ae5d0cb2b7d2c06ad73a..ad57293616162dd1ba5bf333a3d0d2f7a30a2d8d 100644
|
| --- a/Source/core/dom/Touch.cpp
|
| +++ b/Source/core/dom/Touch.cpp
|
| @@ -44,7 +44,7 @@ static FloatPoint contentsOffset(LocalFrame* frame)
|
| return FloatPoint(frameView->scrollPosition()).scaledBy(scale);
|
| }
|
|
|
| -Touch::Touch(LocalFrame* frame, EventTarget* target, unsigned identifier, const FloatPoint& screenPos, const FloatPoint& pagePos, const FloatSize& radius, float rotationAngle, float force)
|
| +Touch::Touch(LocalFrame* frame, EventTarget* target, int identifier, const FloatPoint& screenPos, const FloatPoint& pagePos, const FloatSize& radius, float rotationAngle, float force)
|
| : m_target(target)
|
| , m_identifier(identifier)
|
| , m_clientPos(pagePos - contentsOffset(frame))
|
| @@ -58,7 +58,7 @@ Touch::Touch(LocalFrame* frame, EventTarget* target, unsigned identifier, const
|
| m_absoluteLocation = roundedLayoutPoint(pagePos.scaledBy(scaleFactor));
|
| }
|
|
|
| -Touch::Touch(EventTarget* target, unsigned identifier, const FloatPoint& clientPos, const FloatPoint& screenPos, const FloatPoint& pagePos, const FloatSize& radius, float rotationAngle, float force, LayoutPoint absoluteLocation)
|
| +Touch::Touch(EventTarget* target, int identifier, const FloatPoint& clientPos, const FloatPoint& screenPos, const FloatPoint& pagePos, const FloatSize& radius, float rotationAngle, float force, LayoutPoint absoluteLocation)
|
| : m_target(target)
|
| , m_identifier(identifier)
|
| , m_clientPos(clientPos)
|
|
|