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

Unified Diff: ui/views/view_targeter.cc

Issue 395563002: Make RootView::DispatchGestureEvent() non-virtual (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: static_cast encapsulated Created 6 years, 5 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/views/view_targeter.cc
diff --git a/ui/views/view_targeter.cc b/ui/views/view_targeter.cc
index e25071aba4777f12c9379669690fbbee93497469..d8e0573b70f90800bcf3c0ab6e39fcdcfe8bedef 100644
--- a/ui/views/view_targeter.cc
+++ b/ui/views/view_targeter.cc
@@ -26,8 +26,7 @@ bool ViewTargeter::DoesIntersectRect(const View* target,
gfx::RectF ViewTargeter::BoundsForEvent(const ui::LocatedEvent& event) const {
gfx::RectF event_bounds(event.location_f(), gfx::SizeF(1, 1));
if (event.IsGestureEvent()) {
- const ui::GestureEvent& gesture =
- static_cast<const ui::GestureEvent&>(event);
+ const ui::GestureEvent& gesture = *(event.AsGestureEvent());
event_bounds = gesture.details().bounding_box_f();
}

Powered by Google App Engine
This is Rietveld 408576698