Chromium Code Reviews| Index: content/browser/renderer_host/basic_mouse_wheel_smooth_scroll_gesture.h |
| diff --git a/content/browser/renderer_host/basic_mouse_wheel_smooth_scroll_gesture.h b/content/browser/renderer_host/basic_mouse_wheel_smooth_scroll_gesture.h |
| index 8e3cb6053ff0226b70a4f6ed017fb3272d557521..8d045a5ba1700559d51fb2cbfe141582a5e5499b 100644 |
| --- a/content/browser/renderer_host/basic_mouse_wheel_smooth_scroll_gesture.h |
| +++ b/content/browser/renderer_host/basic_mouse_wheel_smooth_scroll_gesture.h |
| @@ -6,6 +6,7 @@ |
| #define CONTENT_BROWSER_RENDERER_HOST_BASIC_MOUSE_WHEEL_SMOOTH_SCROLL_GESTURE_ |
| #include "base/time.h" |
| +#include "content/browser/renderer_host/smooth_scroll_calculator.h" |
| #include "content/port/browser/smooth_scroll_gesture.h" |
| namespace content { |
| @@ -22,14 +23,15 @@ class BasicMouseWheelSmoothScrollGesture : public SmoothScrollGesture { |
| private: |
| virtual ~BasicMouseWheelSmoothScrollGesture(); |
| + SmoothScrollCalculator smooth_scroll_calculator_; |
| + |
| bool scroll_down_; |
| int pixels_scrolled_; |
| int pixels_to_scroll_; |
| int mouse_event_x_; |
| int mouse_event_y_; |
| - base::TimeTicks last_tick_time_; |
| }; |
| } // namespace content |
| -#endif |
| +#endif // CONTENT_BROWSER_RENDERER_HOST_BASIC_MOUSE_WHEEL_SMOOTH_SCROLL_GESTURE_ |
|
sadrul
2013/05/08 14:54:35
two spaces before // (here and in the rest of the
bulach
2013/05/08 15:19:25
Done.
|