summaryrefslogtreecommitdiffstats
path: root/chrome/browser/event_disposition.cc
blob: 618e11be0f493947286c31de5e12d5906ab2c51f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "chrome/browser/event_disposition.h"
#include "content/browser/disposition_utils.h"
#include "ui/base/events.h"

namespace browser {

WindowOpenDisposition DispositionFromEventFlags(int event_flags) {
  return disposition_utils::DispositionFromClick(
      (event_flags & ui::EF_MIDDLE_BUTTON_DOWN) != 0,
      (event_flags & ui::EF_ALT_DOWN) != 0,
      (event_flags & ui::EF_CONTROL_DOWN) != 0,
      false /* meta_key */,
      (event_flags & ui::EF_SHIFT_DOWN) != 0);
}

}