Index: ui/events/gesture_event_details.h |
diff --git a/ui/events/gesture_event_details.h b/ui/events/gesture_event_details.h |
index fb897b2fce308bf0b2154080df1a7921daff79f7..fd562c55e46786031d116290dae12d14a1a07b81 100644 |
--- a/ui/events/gesture_event_details.h |
+++ b/ui/events/gesture_event_details.h |
@@ -80,22 +80,22 @@ struct EVENTS_BASE_EXPORT GestureEventDetails { |
} |
bool swipe_left() const { |
- DCHECK_EQ(ui::ET_GESTURE_MULTIFINGER_SWIPE, type_); |
+ DCHECK_EQ(ui::ET_GESTURE_SWIPE, type_); |
return data.swipe.left; |
} |
bool swipe_right() const { |
- DCHECK_EQ(ui::ET_GESTURE_MULTIFINGER_SWIPE, type_); |
+ DCHECK_EQ(ui::ET_GESTURE_SWIPE, type_); |
return data.swipe.right; |
} |
bool swipe_up() const { |
- DCHECK_EQ(ui::ET_GESTURE_MULTIFINGER_SWIPE, type_); |
+ DCHECK_EQ(ui::ET_GESTURE_SWIPE, type_); |
return data.swipe.up; |
} |
bool swipe_down() const { |
- DCHECK_EQ(ui::ET_GESTURE_MULTIFINGER_SWIPE, type_); |
+ DCHECK_EQ(ui::ET_GESTURE_SWIPE, type_); |
return data.swipe.down; |
} |