OLD | NEW |
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 UI_BASE_GESTURES_VELOCITY_CALCULATOR_H_ | 5 #ifndef UI_BASE_GESTURES_VELOCITY_CALCULATOR_H_ |
6 #define UI_BASE_GESTURES_VELOCITY_CALCULATOR_H_ | 6 #define UI_BASE_GESTURES_VELOCITY_CALCULATOR_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
(...skipping 14 matching lines...) Expand all Loading... |
25 | 25 |
26 private: | 26 private: |
27 struct Point { | 27 struct Point { |
28 int x; | 28 int x; |
29 int y; | 29 int y; |
30 int64 time; | 30 int64 time; |
31 }; | 31 }; |
32 | 32 |
33 void UpdateVelocity(); | 33 void UpdateVelocity(); |
34 | 34 |
35 typedef scoped_array<Point> HistoryBuffer; | 35 typedef scoped_ptr<Point[]> HistoryBuffer; |
36 HistoryBuffer buffer_; | 36 HistoryBuffer buffer_; |
37 | 37 |
38 // index_ points directly after the last point added. | 38 // index_ points directly after the last point added. |
39 int index_; | 39 int index_; |
40 size_t num_valid_entries_; | 40 size_t num_valid_entries_; |
41 const size_t buffer_size_; | 41 const size_t buffer_size_; |
42 float x_velocity_; | 42 float x_velocity_; |
43 float y_velocity_; | 43 float y_velocity_; |
44 bool velocities_stale_; | 44 bool velocities_stale_; |
45 DISALLOW_COPY_AND_ASSIGN(VelocityCalculator); | 45 DISALLOW_COPY_AND_ASSIGN(VelocityCalculator); |
46 }; | 46 }; |
47 | 47 |
48 } // namespace ui | 48 } // namespace ui |
49 | 49 |
50 #endif // UI_BASE_GESTURES_VELOCITY_CALCULATOR_H_ | 50 #endif // UI_BASE_GESTURES_VELOCITY_CALCULATOR_H_ |
OLD | NEW |