Index: content/browser/renderer_host/input/synthetic_smooth_scroll_gesture.h |
diff --git a/content/browser/renderer_host/input/synthetic_smooth_scroll_gesture.h b/content/browser/renderer_host/input/synthetic_smooth_scroll_gesture.h |
index 10428b16e13df2be8d0ea7d9174e847a16fea43c..3185d6b073a79e63a353de4c50848c626fcc3c79 100644 |
--- a/content/browser/renderer_host/input/synthetic_smooth_scroll_gesture.h |
+++ b/content/browser/renderer_host/input/synthetic_smooth_scroll_gesture.h |
@@ -32,12 +32,6 @@ class CONTENT_EXPORT SyntheticSmoothScrollGesture : public SyntheticGesture { |
STOPPING, |
DONE |
}; |
- SyntheticSmoothScrollGestureParams params_; |
- float current_y_; |
- SyntheticWebTouchEvent touch_event_; |
- SyntheticGestureParams::GestureSourceType gesture_source_type_; |
- GestureState state_; |
- base::TimeDelta total_stopping_wait_time_; |
void ForwardTouchInputEvents( |
const base::TimeDelta& interval, SyntheticGestureTarget* target); |
@@ -52,6 +46,13 @@ class CONTENT_EXPORT SyntheticSmoothScrollGesture : public SyntheticGesture { |
float ComputeAbsoluteRemainingDistance() const; |
bool HasScrolledEntireDistance() const; |
+ SyntheticSmoothScrollGestureParams params_; |
+ float current_y_; |
+ SyntheticWebTouchEvent touch_event_; |
+ SyntheticGestureParams::GestureSourceType gesture_source_type_; |
+ GestureState state_; |
+ base::TimeDelta total_stopping_wait_time_; |
+ |
DISALLOW_COPY_AND_ASSIGN(SyntheticSmoothScrollGesture); |
}; |