| Index: ui/events/event.cc
|
| diff --git a/ui/events/event.cc b/ui/events/event.cc
|
| index 166a8bd1d18d486fb19df5709620f811739b189e..86d4dd63916820c92b5c0cdf991572591f191b89 100644
|
| --- a/ui/events/event.cc
|
| +++ b/ui/events/event.cc
|
| @@ -484,12 +484,13 @@ MouseWheelEvent::MouseWheelEvent(const MouseWheelEvent& mouse_wheel_event)
|
| MouseWheelEvent::MouseWheelEvent(const gfx::Vector2d& offset,
|
| const gfx::PointF& location,
|
| const gfx::PointF& root_location,
|
| + base::TimeDelta time_stamp,
|
| int flags,
|
| int changed_button_flags)
|
| : MouseEvent(ui::ET_MOUSEWHEEL,
|
| location,
|
| root_location,
|
| - EventTimeForNow(),
|
| + time_stamp,
|
| flags,
|
| changed_button_flags),
|
| offset_(offset) {
|
|
|