OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/browser/ui/views/event_utils.h" | 5 #include "chrome/browser/ui/views/event_utils.h" |
6 | 6 |
7 #include "ui/views/events/event.h" | 7 #include "ui/views/events/event.h" |
8 | 8 |
9 namespace event_utils { | 9 namespace event_utils { |
10 | 10 |
11 bool IsPossibleDispositionEvent(const views::MouseEvent& event) { | 11 bool IsPossibleDispositionEvent(const views::Event& event) { |
12 return event.IsLeftMouseButton() || event.IsMiddleMouseButton(); | 12 return event.IsMouseEvent() && (event.flags() & |
| 13 (ui::EF_LEFT_MOUSE_BUTTON | ui::EF_RIGHT_MOUSE_BUTTON)); |
13 } | 14 } |
14 | 15 |
15 } // namespace event_utils | 16 } // namespace event_utils |
OLD | NEW |