// Copyright 2019 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_HOST_XDG_POPUP_WRAPPER_IMPL_H_ #define UI_OZONE_PLATFORM_WAYLAND_HOST_XDG_POPUP_WRAPPER_IMPL_H_ #include <cstdint> #include <memory> #include "base/memory/raw_ptr.h" #include "ui/ozone/platform/wayland/host/shell_popup_wrapper.h" namespace ui { class XDGSurfaceWrapperImpl; class WaylandConnection; class WaylandWindow; // Popup wrapper for xdg-shell stable // Note that XDG does not allow {0, 0} geometries in its protocol, but this is // allowed in Chrome. All {0, 0} bounds will be resized to {1, 1}. class XDGPopupWrapperImpl : public ShellPopupWrapper { … }; } // namespace ui #endif // UI_OZONE_PLATFORM_WAYLAND_HOST_XDG_POPUP_WRAPPER_IMPL_H_