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

Unified Diff: ui/events/gestures/gesture_sequence.cc

Issue 240333007: wip: Second crack at implementing the touch exploration mode. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Don't extend DisplayController::Observer - TouchExplorationController is owned by the root window (… Created 6 years, 8 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
Index: ui/events/gestures/gesture_sequence.cc
diff --git a/ui/events/gestures/gesture_sequence.cc b/ui/events/gestures/gesture_sequence.cc
index f0513dd7a13ffcaa18b85c365b9308041025757a..fe08bf9713a0c03f852f41930e9b4f2809f9c7af 100644
--- a/ui/events/gestures/gesture_sequence.cc
+++ b/ui/events/gestures/gesture_sequence.cc
@@ -512,6 +512,7 @@ GestureSequence::Gestures* GestureSequence::ProcessTouchEventForGesture(
if (result & ER_CONSUMED)
return NULL;
+ LOG(ERROR) << "GS::ProcessTouchEventForGesture, type=" << event.type();
Daniel Erat 2014/04/18 00:44:08 delete
// Set a limit on the number of simultaneous touches in a gesture.
if (event.touch_id() >= kMaxGesturePoints)
return NULL;

Powered by Google App Engine
This is Rietveld 408576698