Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1098)

Unified Diff: ui/events/gesture_detection/scale_gesture_listeners.cc

Issue 617423002: Make GestureTextSelector detect its own gestures (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Sort gyp/gn Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/events/gesture_detection/scale_gesture_listeners.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/events/gesture_detection/scale_gesture_listeners.cc
diff --git a/ui/events/gesture_detection/scale_gesture_listeners.cc b/ui/events/gesture_detection/scale_gesture_listeners.cc
new file mode 100644
index 0000000000000000000000000000000000000000..98c957a978f3d18a0d5895dd09f28361f064dfd4
--- /dev/null
+++ b/ui/events/gesture_detection/scale_gesture_listeners.cc
@@ -0,0 +1,23 @@
+// 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/scale_gesture_listeners.h"
+
+namespace ui {
+
+bool SimpleScaleGestureListener::OnScale(const ScaleGestureDetector&,
+ const MotionEvent&) {
+ return false;
+}
+
+bool SimpleScaleGestureListener::OnScaleBegin(const ScaleGestureDetector&,
+ const MotionEvent&) {
+ return true;
+}
+
+void SimpleScaleGestureListener::OnScaleEnd(const ScaleGestureDetector&,
+ const MotionEvent&) {
+}
+
+} // namespace ui
« no previous file with comments | « ui/events/gesture_detection/scale_gesture_listeners.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698