OLD | NEW |
(Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "ui/events/gesture_detection/gesture_configuration.h" |
| 6 |
| 7 #include "base/command_line.h" |
| 8 #include "ui/events/event_switches.h" |
| 9 |
| 10 namespace ui { |
| 11 namespace { |
| 12 |
| 13 class GESTURE_DETECTION_EXPORT GestureConfigurationAura |
| 14 : public GestureConfiguration { |
| 15 public: |
| 16 ~GestureConfigurationAura() override { |
| 17 } |
| 18 |
| 19 static GestureConfigurationAura* GetInstance() { |
| 20 return Singleton<GestureConfigurationAura>::get(); |
| 21 } |
| 22 |
| 23 private: |
| 24 GestureConfigurationAura() : GestureConfiguration() { |
| 25 set_double_tap_timeout_in_ms(semi_long_press_time_in_ms()); |
| 26 set_gesture_begin_end_types_enabled(true); |
| 27 set_min_gesture_bounds_length(default_radius()); |
| 28 set_min_pinch_update_span_delta( |
| 29 CommandLine::ForCurrentProcess()->HasSwitch( |
| 30 switches::kCompensateForUnstablePinchZoom) |
| 31 ? 5 : 0); |
| 32 set_min_scaling_touch_major(default_radius() * 2); |
| 33 set_span_slop(max_touch_move_in_pixels_for_click() * 2); |
| 34 set_swipe_enabled(true); |
| 35 set_two_finger_tap_enabled(true); |
| 36 } |
| 37 |
| 38 friend struct DefaultSingletonTraits<GestureConfigurationAura>; |
| 39 DISALLOW_COPY_AND_ASSIGN(GestureConfigurationAura); |
| 40 }; |
| 41 |
| 42 } // namespace |
| 43 |
| 44 // Create a GestureConfigurationAura singleton instance when using aura. |
| 45 GestureConfiguration* GestureConfiguration::GetInstance() { |
| 46 return GestureConfigurationAura::GetInstance(); |
| 47 } |
| 48 |
| 49 } // namespace ui |
OLD | NEW |