blob: 8d316faceac4d71c7957debe597de1d142daac18 [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_PUBLIC_CPP_WINDOW_PIN_TYPE_H_
#define ASH_PUBLIC_CPP_WINDOW_PIN_TYPE_H_
#include <cstdint>
#include "ash/public/cpp/ash_public_export.h"
namespace aura {
class Window;
}
namespace ui {
class BaseWindow;
}
namespace ash {
ASH_PUBLIC_EXPORT bool IsValidWindowPinType(int64_t value);
ASH_PUBLIC_EXPORT bool IsWindowTrustedPinned(const aura::Window* window);
ASH_PUBLIC_EXPORT bool IsWindowTrustedPinned(const ui::BaseWindow* window);
} // namespace ash
#endif // ASH_PUBLIC_CPP_WINDOW_PIN_TYPE_H_