// Copyright 2012 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_GESTURES_GESTURE_RECOGNIZER_H_ #define UI_EVENTS_GESTURES_GESTURE_RECOGNIZER_H_ #include <stdint.h> #include <memory> #include <vector> #include "ui/events/event_constants.h" #include "ui/events/events_export.h" #include "ui/events/gestures/gesture_types.h" #include "ui/gfx/geometry/point_f.h" namespace ui { // A GestureRecognizer is an abstract base class for conversion of touch events // into gestures. class EVENTS_EXPORT GestureRecognizer { … }; } // namespace ui #endif // UI_EVENTS_GESTURES_GESTURE_RECOGNIZER_H_