Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(255)

Side by Side Diff: content/browser/renderer_host/basic_mouse_wheel_smooth_scroll_gesture.h

Issue 18152002: Use a direct include of time headers in content/, part 1. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_BROWSER_RENDERER_HOST_BASIC_MOUSE_WHEEL_SMOOTH_SCROLL_GESTURE_ 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_BASIC_MOUSE_WHEEL_SMOOTH_SCROLL_GESTURE_
6 #define CONTENT_BROWSER_RENDERER_HOST_BASIC_MOUSE_WHEEL_SMOOTH_SCROLL_GESTURE_ 6 #define CONTENT_BROWSER_RENDERER_HOST_BASIC_MOUSE_WHEEL_SMOOTH_SCROLL_GESTURE_
7 7
8 #include "base/time.h" 8 #include "base/time/time.h"
9 #include "content/browser/renderer_host/smooth_scroll_calculator.h" 9 #include "content/browser/renderer_host/smooth_scroll_calculator.h"
10 #include "content/port/browser/smooth_scroll_gesture.h" 10 #include "content/port/browser/smooth_scroll_gesture.h"
11 11
12 namespace content { 12 namespace content {
13 13
14 class RenderWidgetHost; 14 class RenderWidgetHost;
15 15
16 class BasicMouseWheelSmoothScrollGesture : public SmoothScrollGesture { 16 class BasicMouseWheelSmoothScrollGesture : public SmoothScrollGesture {
17 public: 17 public:
18 BasicMouseWheelSmoothScrollGesture(bool scroll_down, int pixels_to_scroll, 18 BasicMouseWheelSmoothScrollGesture(bool scroll_down, int pixels_to_scroll,
19 int mouse_event_x, int mouse_event_y); 19 int mouse_event_x, int mouse_event_y);
20 20
21 virtual bool ForwardInputEvents(base::TimeTicks now, 21 virtual bool ForwardInputEvents(base::TimeTicks now,
22 RenderWidgetHost* host) OVERRIDE; 22 RenderWidgetHost* host) OVERRIDE;
23 private: 23 private:
24 virtual ~BasicMouseWheelSmoothScrollGesture(); 24 virtual ~BasicMouseWheelSmoothScrollGesture();
25 25
26 SmoothScrollCalculator smooth_scroll_calculator_; 26 SmoothScrollCalculator smooth_scroll_calculator_;
27 27
28 bool scroll_down_; 28 bool scroll_down_;
29 int pixels_scrolled_; 29 int pixels_scrolled_;
30 int pixels_to_scroll_; 30 int pixels_to_scroll_;
31 int mouse_event_x_; 31 int mouse_event_x_;
32 int mouse_event_y_; 32 int mouse_event_y_;
33 }; 33 };
34 34
35 } // namespace content 35 } // namespace content
36 36
37 #endif // CONTENT_BROWSER_RENDERER_HOST_BASIC_MOUSE_WHEEL_SMOOTH_SCROLL_GESTURE _ 37 #endif // CONTENT_BROWSER_RENDERER_HOST_BASIC_MOUSE_WHEEL_SMOOTH_SCROLL_GESTURE _
OLDNEW
« no previous file with comments | « content/browser/renderer_host/backing_store_gtk.cc ('k') | content/browser/renderer_host/compositing_iosurface_mac.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698