| Index: content/common/input/synthetic_web_input_event_builders.cc
|
| diff --git a/content/common/input/synthetic_web_input_event_builders.cc b/content/common/input/synthetic_web_input_event_builders.cc
|
| index e2e17febb95b059c90d1b72a89cdcf5753ac010f..4ba93d317694707f1fa2428ab3a079b60e8dcd6e 100644
|
| --- a/content/common/input/synthetic_web_input_event_builders.cc
|
| +++ b/content/common/input/synthetic_web_input_event_builders.cc
|
| @@ -171,7 +171,7 @@ void SyntheticWebTouchEvent::ResetPoints() {
|
| }
|
| touchesLength = point;
|
| type = WebInputEvent::Undefined;
|
| - causesScrollingIfUncanceled = false;
|
| + movedBeyondSlopRegion = false;
|
| uniqueTouchEventId = ui::GetNextTouchEventId();
|
| }
|
|
|
| @@ -198,7 +198,7 @@ void SyntheticWebTouchEvent::MovePoint(int index, float x, float y) {
|
| CHECK_LT(index, touchesLengthCap);
|
| // Always set this bit to avoid otherwise unexpected touchmove suppression.
|
| // The caller can opt-out explicitly, if necessary.
|
| - causesScrollingIfUncanceled = true;
|
| + movedBeyondSlopRegion = true;
|
| WebTouchPoint& point = touches[index];
|
| point.position.x = point.screenPosition.x = x;
|
| point.position.y = point.screenPosition.y = y;
|
|
|