chromium/ui/ozone/platform/wayland/gpu/wayland_overlay_candidates.h

// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef UI_OZONE_PLATFORM_WAYLAND_GPU_WAYLAND_OVERLAY_CANDIDATES_H_
#define UI_OZONE_PLATFORM_WAYLAND_GPU_WAYLAND_OVERLAY_CANDIDATES_H_

#include <vector>

#include "base/memory/raw_ptr.h"
#include "ui/gfx/native_widget_types.h"
#include "ui/ozone/public/overlay_candidates_ozone.h"

namespace ui {
class WaylandOverlayManager;
class OverlaySurfaceCandidate;

// OverlayCandidatesOzone implementation that delegates overlay decision to
// WaylandOverlayManager.
class WaylandOverlayCandidates : public OverlayCandidatesOzone {};

}  // namespace ui

#endif  // UI_OZONE_PLATFORM_WAYLAND_GPU_WAYLAND_OVERLAY_CANDIDATES_H_