| 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/base/event.h" | 7 #include "ui/base/events/event.h" |
| 8 | 8 |
| 9 namespace event_utils { | 9 namespace event_utils { |
| 10 | 10 |
| 11 bool IsPossibleDispositionEvent(const ui::Event& event) { | 11 bool IsPossibleDispositionEvent(const ui::Event& event) { |
| 12 return event.IsMouseEvent() && (event.flags() & | 12 return event.IsMouseEvent() && (event.flags() & |
| 13 (ui::EF_LEFT_MOUSE_BUTTON | ui::EF_MIDDLE_MOUSE_BUTTON)); | 13 (ui::EF_LEFT_MOUSE_BUTTON | ui::EF_MIDDLE_MOUSE_BUTTON)); |
| 14 } | 14 } |
| 15 | 15 |
| 16 } // namespace event_utils | 16 } // namespace event_utils |
| OLD | NEW |