| Index: content/browser/renderer_host/input/synthetic_gesture_controller_unittest.cc
|
| diff --git a/content/browser/renderer_host/input/synthetic_gesture_controller_unittest.cc b/content/browser/renderer_host/input/synthetic_gesture_controller_unittest.cc
|
| index 9369bfdfdc8c35149c6fdf55a9932e8e7d86eee9..1beaab8b6e9a4da7e9d9761e99fd1cc0783ddbca 100644
|
| --- a/content/browser/renderer_host/input/synthetic_gesture_controller_unittest.cc
|
| +++ b/content/browser/renderer_host/input/synthetic_gesture_controller_unittest.cc
|
| @@ -1474,7 +1474,7 @@ TEST_F(SyntheticGestureControllerTest, PointerTouchAction) {
|
|
|
| gfx::PointF position(54, 89);
|
| scoped_ptr<SyntheticPointerAction> gesture(new SyntheticPointerAction(
|
| - SyntheticGestureParams::TOUCH_INPUT, SyntheticGesture::PRESS,
|
| + SyntheticGestureParams::TOUCH_INPUT, SyntheticGestureParams::PRESS,
|
| &synthetic_pointer, position));
|
| QueueSyntheticGesture(std::move(gesture));
|
| FlushInputUntilComplete();
|
| @@ -1488,7 +1488,7 @@ TEST_F(SyntheticGestureControllerTest, PointerTouchAction) {
|
|
|
| position.SetPoint(79, 132);
|
| gesture.reset(new SyntheticPointerAction(SyntheticGestureParams::TOUCH_INPUT,
|
| - SyntheticGesture::PRESS,
|
| + SyntheticGestureParams::PRESS,
|
| &synthetic_pointer, position));
|
| QueueSyntheticGesture(std::move(gesture));
|
| FlushInputUntilComplete();
|
| @@ -1504,7 +1504,7 @@ TEST_F(SyntheticGestureControllerTest, PointerTouchAction) {
|
| int index = 1;
|
| position.SetPoint(133, 156);
|
| gesture.reset(new SyntheticPointerAction(
|
| - SyntheticGestureParams::TOUCH_INPUT, SyntheticGesture::MOVE,
|
| + SyntheticGestureParams::TOUCH_INPUT, SyntheticGestureParams::MOVE,
|
| &synthetic_pointer, position, index));
|
| QueueSyntheticGesture(std::move(gesture));
|
| FlushInputUntilComplete();
|
| @@ -1517,7 +1517,7 @@ TEST_F(SyntheticGestureControllerTest, PointerTouchAction) {
|
| ASSERT_EQ(pointer_touch_target->touch_length(), 2U);
|
|
|
| gesture.reset(new SyntheticPointerAction(
|
| - SyntheticGestureParams::TOUCH_INPUT, SyntheticGesture::RELEASE,
|
| + SyntheticGestureParams::TOUCH_INPUT, SyntheticGestureParams::RELEASE,
|
| &synthetic_pointer, position, index));
|
| QueueSyntheticGesture(std::move(gesture));
|
| FlushInputUntilComplete();
|
|
|