Index: content/common/input/synthetic_smooth_scroll_gesture_params.cc |
diff --git a/content/common/input/synthetic_smooth_scroll_gesture_params.cc b/content/common/input/synthetic_smooth_scroll_gesture_params.cc |
index 8e1c974827020f2f2f6e79400fe855da021c5f5b..a564ea630118a09bb611a68f18c261f51c5ce006 100644 |
--- a/content/common/input/synthetic_smooth_scroll_gesture_params.cc |
+++ b/content/common/input/synthetic_smooth_scroll_gesture_params.cc |
@@ -17,10 +17,11 @@ SyntheticSmoothScrollGestureParams::SyntheticSmoothScrollGestureParams() |
: prevent_fling(true), speed_in_pixels_s(kDefaultSpeedInPixelsS) {} |
SyntheticSmoothScrollGestureParams::SyntheticSmoothScrollGestureParams( |
- const SyntheticSmoothScrollGestureParams& other) |
+ const SyntheticSmoothScrollGestureParams& other) |
: SyntheticGestureParams(other), |
anchor(other.anchor), |
distances(other.distances), |
+ velocity(other.velocity), |
prevent_fling(other.prevent_fling), |
speed_in_pixels_s(other.speed_in_pixels_s) {} |