Index: content/common/input/synthetic_pinch_gesture_params.cc |
diff --git a/content/common/input/synthetic_pinch_gesture_params.cc b/content/common/input/synthetic_pinch_gesture_params.cc |
index 5b4ca4486055019174aa0df7cdf6bc574859573c..b4efcb02b17161c45e4c374dba2401f293ef0807 100644 |
--- a/content/common/input/synthetic_pinch_gesture_params.cc |
+++ b/content/common/input/synthetic_pinch_gesture_params.cc |
@@ -9,15 +9,13 @@ |
namespace content { |
SyntheticPinchGestureParams::SyntheticPinchGestureParams() |
- : zoom_in(true), |
- total_num_pixels_covered(100), |
+ : scale_factor(1.0f), |
relative_pointer_speed_in_pixels_s(500) {} |
SyntheticPinchGestureParams::SyntheticPinchGestureParams( |
const SyntheticPinchGestureParams& other) |
: SyntheticGestureParams(other), |
- zoom_in(other.zoom_in), |
- total_num_pixels_covered(other.total_num_pixels_covered), |
+ scale_factor(other.scale_factor), |
anchor(other.anchor), |
relative_pointer_speed_in_pixels_s( |
other.relative_pointer_speed_in_pixels_s) {} |