Remove the fall-through for mouse moves in View::OnMouseEvent()
commit0ac6cd424cad20804a14199341cce41f0489d187
authortdanderson <tdanderson@chromium.org>
Thu, 23 Oct 2014 18:29:44 +0000 (23 11:29 -0700)
committerCommit bot <commit-bot@chromium.org>
Thu, 23 Oct 2014 18:30:19 +0000 (23 18:30 +0000)
tree845c04d5eb0fdf7d62a55d0f1ada722e0770fe79
parent6d0b8603bccab5741aa15efeefef6ea8f35bcba6
Remove the fall-through for mouse moves in View::OnMouseEvent()

Mouse move events should not be processed as
mouse drag events, since if a mouse button is
down at the time of event creation then the
event would have been created as a drag event.
Remove the corresponding fall-through in
View::OnMouseEvent().

BUG=412929
TEST=covered by existing tests

Review URL: https://codereview.chromium.org/627463002

Cr-Commit-Position: refs/heads/master@{#300919}
ui/views/view.cc