blob: 4aa695bee1c722279f7cd4226f847e5ab4eb2b0b [file] [log] [blame]
// Copyright 2017 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.
#ifndef ASH_DISPLAY_DISPLAY_MOVE_WINDOW_UTIL_H_
#define ASH_DISPLAY_DISPLAY_MOVE_WINDOW_UTIL_H_
#include "ash/ash_export.h"
namespace ash {
enum class DisplayMoveWindowDirection { kAbove, kBelow, kLeft, kRight };
// Handles moving current active window from its display to another display
// specified by |Direction|.
ASH_EXPORT void HandleMoveWindowToDisplay(DisplayMoveWindowDirection direction);
} // namespace ash
#endif // ASH_DISPLAY_DISPLAY_MOVE_WINDOW_UTIL_H_