// Copyright 2014 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef UI_EVENTS_GESTURE_CURVE_H_ #define UI_EVENTS_GESTURE_CURVE_H_ #include "base/time/time.h" #include "ui/gfx/geometry/vector2d_f.h" namespace ui { // An abstraction of curve-based gesture motion, allowing platform-specific // motion tailoring. class EVENTS_BASE_EXPORT GestureCurve { … }; } // namespace ui #endif // UI_EVENTS_GESTURE_CURVE_H_