Index: ui/events/gesture_detection/gesture_config_helper.cc |
diff --git a/ui/events/gesture_detection/gesture_config_helper.cc b/ui/events/gesture_detection/gesture_config_helper.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..86ad6c7f7b006c69861c6c8db918095fdb7cbff8 |
--- /dev/null |
+++ b/ui/events/gesture_detection/gesture_config_helper.cc |
@@ -0,0 +1,25 @@ |
+// Copyright 2014 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#include "ui/events/gesture_detection/gesture_config_helper.h" |
+ |
+namespace ui { |
+ |
+GestureDetector::Config DefaultGestureDetectorConfig() { |
+ return GestureDetector::Config(); |
+} |
+ |
+ScaleGestureDetector::Config DefaultScaleGestureDetectorConfig() { |
+ return ScaleGestureDetector::Config(); |
+} |
+ |
+SnapScrollController::Config DefaultSnapScrollControllerConfig() { |
+ return SnapScrollController::Config(); |
+} |
+ |
+GestureProvider::Config DefaultGestureProviderConfig() { |
+ return GestureProvider::Config(); |
+} |
+ |
+} // namespace ui |