// Copyright 2013 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "ui/base/window_open_disposition_utils.h" #include "build/build_config.h" #include "ui/events/event_constants.h" namespace ui { WindowOpenDisposition DispositionFromClick( bool middle_button, bool alt_key, bool ctrl_key, bool meta_key, bool shift_key, WindowOpenDisposition disposition_for_current_tab) { … } WindowOpenDisposition DispositionFromEventFlags( int event_flags, WindowOpenDisposition disposition_for_current_tab) { … } } // namespace ui