| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 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 TouchpadFlingPlatformGestureCurve_h | 5 #ifndef TouchpadFlingPlatformGestureCurve_h |
| 6 #define TouchpadFlingPlatformGestureCurve_h | 6 #define TouchpadFlingPlatformGestureCurve_h |
| 7 | 7 |
| 8 #include "FloatPoint.h" | 8 #include "FloatPoint.h" |
| 9 #include "PlatformGestureCurve.h" | 9 #include "PlatformGestureCurve.h" |
| 10 #include <wtf/OwnPtr.h> | 10 #include <wtf/OwnPtr.h> |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 float m_timeOffset; | 36 float m_timeOffset; |
| 37 float m_curveDuration; | 37 float m_curveDuration; |
| 38 float m_positionOffset; | 38 float m_positionOffset; |
| 39 | 39 |
| 40 static const int m_maxSearchIterations; | 40 static const int m_maxSearchIterations; |
| 41 }; | 41 }; |
| 42 | 42 |
| 43 } // namespace WebCore | 43 } // namespace WebCore |
| 44 | 44 |
| 45 #endif | 45 #endif |
| OLD | NEW |