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
3// found in the LICENSE file.
4
5#include "chrome/browser/ui/views/event_utils.h"
6
7#include "ui/events/event.h"
8
9namespace event_utils {
10
11bool IsPossibleDispositionEvent(const ui::Event& event) {
12  return event.IsMouseEvent() && (event.flags() &
13             (ui::EF_LEFT_MOUSE_BUTTON | ui::EF_MIDDLE_MOUSE_BUTTON));
14}
15
16}  // namespace event_utils
17