// 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_TYPES_H_ #define UI_EVENTS_GESTURES_GESTURE_TYPES_H_ #include <memory> #include <string> #include "base/memory/weak_ptr.h" #include "ui/events/events_export.h" namespace ui { class GestureEvent; class TouchEvent; class GestureProviderAura; // TransferTouchesBehavior customizes the behavior of // GestureRecognizer::TransferEventsTo. enum class TransferTouchesBehavior { … }; // An abstract type for consumers of gesture-events created by the // gesture-recognizer. class EVENTS_EXPORT GestureConsumer { … }; // GestureEventHelper creates implementation-specific gesture events and // can dispatch them. class EVENTS_EXPORT GestureEventHelper { … }; } // namespace ui #endif // UI_EVENTS_GESTURES_GESTURE_TYPES_H_