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: ui/events/gestures/velocity_calculator.h

Issue 458363002: Remove old Aura Gesture Detection Pipeline. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address sadrul's comment, and rebase. Created 6 years, 4 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
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef UI_EVENTS_GESTURES_VELOCITY_CALCULATOR_H_
6 #define UI_EVENTS_GESTURES_VELOCITY_CALCULATOR_H_
7
8 #include <vector>
9
10 #include "base/basictypes.h"
11 #include "base/memory/scoped_ptr.h"
12 #include "ui/events/events_export.h"
13
14 namespace ui {
15
16 class EVENTS_EXPORT VelocityCalculator {
17 public:
18 explicit VelocityCalculator(int bufferSize);
19 ~VelocityCalculator();
20 void PointSeen(float x, float y, int64 time);
21 float XVelocity();
22 float YVelocity();
23 float VelocitySquared();
24 void ClearHistory();
25
26 private:
27 struct Point {
28 float x;
29 float y;
30 int64 time;
31 };
32
33 void UpdateVelocity();
34
35 typedef scoped_ptr<Point[]> HistoryBuffer;
36 HistoryBuffer buffer_;
37
38 // index_ points directly after the last point added.
39 int index_;
40 size_t num_valid_entries_;
41 const size_t buffer_size_;
42 float x_velocity_;
43 float y_velocity_;
44 bool velocities_stale_;
45 DISALLOW_COPY_AND_ASSIGN(VelocityCalculator);
46 };
47
48 } // namespace ui
49
50 #endif // UI_EVENTS_GESTURES_VELOCITY_CALCULATOR_H_
OLDNEW
« no previous file with comments | « ui/events/gestures/unified_gesture_detector_enabled.cc ('k') | ui/events/gestures/velocity_calculator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698