| Index: ui/events/gestures/gesture_provider_aura.h
|
| diff --git a/ui/events/gestures/gesture_provider_aura.h b/ui/events/gestures/gesture_provider_aura.h
|
| index 6b649dc0fc5db9aaf608f9d761c3a8ed33451efb..daf853de25d45e4788a88510b0cdfd55c5261e7c 100644
|
| --- a/ui/events/gestures/gesture_provider_aura.h
|
| +++ b/ui/events/gestures/gesture_provider_aura.h
|
| @@ -27,7 +27,7 @@ class EVENTS_EXPORT GestureProviderAuraClient {
|
| class EVENTS_EXPORT GestureProviderAura : public GestureProviderClient {
|
| public:
|
| GestureProviderAura(GestureProviderAuraClient* client);
|
| - virtual ~GestureProviderAura();
|
| + ~GestureProviderAura() override;
|
|
|
| bool OnTouchEvent(const TouchEvent& event);
|
| void OnTouchEventAck(bool event_consumed);
|
| @@ -35,7 +35,7 @@ class EVENTS_EXPORT GestureProviderAura : public GestureProviderClient {
|
| ScopedVector<GestureEvent>* GetAndResetPendingGestures();
|
|
|
| // GestureProviderClient implementation
|
| - virtual void OnGestureEvent(const GestureEventData& gesture) override;
|
| + void OnGestureEvent(const GestureEventData& gesture) override;
|
|
|
| private:
|
| bool IsConsideredDoubleTap(const GestureEventData& previous_tap,
|
|
|