| Index: ui/events/test/event_generator.cc
|
| diff --git a/ui/events/test/event_generator.cc b/ui/events/test/event_generator.cc
|
| index 24b43876c713988a876d3c3fa04005c386a3379a..21038e2445655e8415c435fa2f8de876e1d0aca8 100644
|
| --- a/ui/events/test/event_generator.cc
|
| +++ b/ui/events/test/event_generator.cc
|
| @@ -403,6 +403,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,
|
| @@ -416,6 +417,7 @@ void EventGenerator::ScrollSequence(const gfx::Point& start,
|
| timestamp += step_delay;
|
| ui::ScrollEvent move(ui::ET_SCROLL,
|
| start,
|
| + start,
|
| timestamp,
|
| 0,
|
| dx, dy,
|
| @@ -426,6 +428,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,
|
| @@ -442,6 +445,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,
|
| @@ -453,6 +457,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(),
|
| @@ -463,6 +468,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(),
|
|
|