blob: 90d607ccf80e6daff8f3f3b5310539f0acd8efb6 [file] [log] [blame]
// Copyright 2016 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_WM_FOCUS_RULES_H_
#define ASH_WM_FOCUS_RULES_H_
#include "ash/ash_export.h"
namespace aura {
class Window;
}
namespace ash {
// These functions provide the ash implementation wm::FocusRules. See
// description there for details.
ASH_EXPORT bool IsToplevelWindow(const aura::Window* window);
ASH_EXPORT bool IsWindowConsideredActivatable(const aura::Window* window);
ASH_EXPORT bool IsWindowConsideredVisibleForActivation(
const aura::Window* window);
} // namespace ash
#endif // ASH_WM_FOCUS_RULES_H_