| Index: third_party/WebKit/Source/core/input/TouchEventManager.cpp
|
| diff --git a/third_party/WebKit/Source/core/input/TouchEventManager.cpp b/third_party/WebKit/Source/core/input/TouchEventManager.cpp
|
| index 5fbb1139f481d6dcf3bea6dfe89f759b3deb01d4..813053e8804b5718b8810a7a0ec69813cd6217a3 100644
|
| --- a/third_party/WebKit/Source/core/input/TouchEventManager.cpp
|
| +++ b/third_party/WebKit/Source/core/input/TouchEventManager.cpp
|
| @@ -177,7 +177,7 @@ WebInputEventResult TouchEventManager::dispatchTouchEvents(
|
| touchInfo.touchNode.get(),
|
| point.id(),
|
| point.screenPos(),
|
| - touchInfo.adjustedPagePoint,
|
| + touchInfo.contentPoint,
|
| touchInfo.adjustedRadius,
|
| point.rotationAngle(),
|
| point.force(),
|
| @@ -381,7 +381,7 @@ void TouchEventManager::setAllPropertiesOfTouchInfos(
|
|
|
| touchInfo.touchNode = touchNode;
|
| touchInfo.targetFrame = targetFrame;
|
| - touchInfo.adjustedPagePoint = pagePoint.scaledBy(scaleFactor);
|
| + touchInfo.contentPoint = pagePoint.scaledBy(scaleFactor);
|
| touchInfo.adjustedRadius = touchInfo.point.radius().scaledBy(scaleFactor);
|
| touchInfo.knownTarget = knownTarget;
|
| touchInfo.consumed = false;
|
|
|