#include "base/command_line.h"
#include "base/memory/singleton.h"
-#include "build/tizen_version.h"
#include "ui/events/event_switches.h"
namespace ui {
private:
GestureConfigurationEfl() : GestureConfiguration() {
set_gesture_begin_end_types_enabled(true);
-#if TIZEN_VERSION_EQ(3,0,0)
- // TODO(t.czekala): workaround on tizen v3.0 platform issue.
- // Tizen 3.0 has delays in reporting touch events or in reading
- // current time what causes the default LSQ2 strategy to generate
- // sometimes invalid velocity. INT1 seems to work, but in following
- // releases of the Tizen platform this should be checked and if it
- // works, this change should be removed
- set_velocity_tracker_strategy(VelocityTracker::Strategy::INT1);
-#endif
}
friend struct base::DefaultSingletonTraits<GestureConfigurationEfl>;