OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "ui/events/gesture_detection/gesture_provider.h" | 5 #include "ui/events/gesture_detection/gesture_provider.h" |
6 | 6 |
7 #include <cmath> | 7 #include <cmath> |
8 | 8 |
9 #include "base/auto_reset.h" | 9 #include "base/auto_reset.h" |
10 #include "base/debug/trace_event.h" | 10 #include "base/trace_event/trace_event.h" |
11 #include "ui/events/event_constants.h" | 11 #include "ui/events/event_constants.h" |
12 #include "ui/events/gesture_detection/gesture_event_data.h" | 12 #include "ui/events/gesture_detection/gesture_event_data.h" |
13 #include "ui/events/gesture_detection/gesture_listeners.h" | 13 #include "ui/events/gesture_detection/gesture_listeners.h" |
14 #include "ui/events/gesture_detection/motion_event.h" | 14 #include "ui/events/gesture_detection/motion_event.h" |
15 #include "ui/events/gesture_detection/scale_gesture_listeners.h" | 15 #include "ui/events/gesture_detection/scale_gesture_listeners.h" |
16 #include "ui/gfx/geometry/point_f.h" | 16 #include "ui/gfx/geometry/point_f.h" |
17 | 17 |
18 namespace ui { | 18 namespace ui { |
19 namespace { | 19 namespace { |
20 | 20 |
(...skipping 791 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
812 // null'ing of the listener until the sequence has ended. | 812 // null'ing of the listener until the sequence has ended. |
813 if (current_down_event_) | 813 if (current_down_event_) |
814 return; | 814 return; |
815 | 815 |
816 const bool double_tap_enabled = | 816 const bool double_tap_enabled = |
817 double_tap_support_for_page_ && double_tap_support_for_platform_; | 817 double_tap_support_for_page_ && double_tap_support_for_platform_; |
818 gesture_listener_->SetDoubleTapEnabled(double_tap_enabled); | 818 gesture_listener_->SetDoubleTapEnabled(double_tap_enabled); |
819 } | 819 } |
820 | 820 |
821 } // namespace ui | 821 } // namespace ui |
OLD | NEW |