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

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

Issue 2691393002: Fix auto raw pointer deduction on linux (Closed)
Patch Set: update Created 3 years, 10 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_recognizer_impl.cc
diff --git a/ui/events/gestures/gesture_recognizer_impl.cc b/ui/events/gestures/gesture_recognizer_impl.cc
index bc0776b5c399c1ddebe1a4051aa8ad8191b0d855..97310a78e03ceac9672ec62441a79a823b30768f 100644
--- a/ui/events/gestures/gesture_recognizer_impl.cc
+++ b/ui/events/gestures/gesture_recognizer_impl.cc
@@ -114,7 +114,7 @@ void GestureRecognizerImpl::CancelActiveTouchesExcept(
consumers.push_back(entry.first);
}
- for (auto consumer : consumers)
+ for (auto* consumer : consumers)
CancelActiveTouches(consumer);
}

Powered by Google App Engine
This is Rietveld 408576698