| Index: ui/events/test/event_generator.cc
|
| diff --git a/ui/events/test/event_generator.cc b/ui/events/test/event_generator.cc
|
| index 490c93a9e4ff7b016f013b3ab50127391eea643d..b06d00311071e9badabdcd2f88443d79e9dc77a6 100644
|
| --- a/ui/events/test/event_generator.cc
|
| +++ b/ui/events/test/event_generator.cc
|
| @@ -413,6 +413,7 @@ void EventGenerator::ScrollSequence(const gfx::Point& start,
|
| base::TimeDelta timestamp = Now();
|
| ui::ScrollEvent fling_cancel(ui::ET_SCROLL_FLING_CANCEL,
|
| start,
|
| + start,
|
| timestamp,
|
| 0,
|
| 0, 0,
|
| @@ -426,6 +427,7 @@ void EventGenerator::ScrollSequence(const gfx::Point& start,
|
| timestamp += step_delay;
|
| ui::ScrollEvent move(ui::ET_SCROLL,
|
| start,
|
| + start,
|
| timestamp,
|
| 0,
|
| dx, dy,
|
| @@ -436,6 +438,7 @@ void EventGenerator::ScrollSequence(const gfx::Point& start,
|
|
|
| ui::ScrollEvent fling_start(ui::ET_SCROLL_FLING_START,
|
| start,
|
| + start,
|
| timestamp,
|
| 0,
|
| x_offset, y_offset,
|
| @@ -452,6 +455,7 @@ void EventGenerator::ScrollSequence(const gfx::Point& start,
|
| base::TimeDelta timestamp = Now();
|
| ui::ScrollEvent fling_cancel(ui::ET_SCROLL_FLING_CANCEL,
|
| start,
|
| + start,
|
| timestamp,
|
| 0,
|
| 0, 0,
|
| @@ -463,6 +467,7 @@ void EventGenerator::ScrollSequence(const gfx::Point& start,
|
| timestamp += step_delay;
|
| ui::ScrollEvent scroll(ui::ET_SCROLL,
|
| start,
|
| + start,
|
| timestamp,
|
| 0,
|
| offsets[i].x(), offsets[i].y(),
|
| @@ -473,6 +478,7 @@ void EventGenerator::ScrollSequence(const gfx::Point& start,
|
|
|
| ui::ScrollEvent fling_start(ui::ET_SCROLL_FLING_START,
|
| start,
|
| + start,
|
| timestamp,
|
| 0,
|
| offsets[steps - 1].x(), offsets[steps - 1].y(),
|
|
|