// Copyright 2024 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_WAYLAND_BUBBLE_H_ #define UI_OZONE_PLATFORM_WAYLAND_HOST_WAYLAND_BUBBLE_H_ #include "base/memory/weak_ptr.h" #include "ui/ozone/platform/wayland/host/wayland_window.h" #include "ui/platform_window/platform_window_init_properties.h" namespace ui { // A WaylandWindow implementation to show kBubble and kPopup widgets. // Implemented using a wl_subsurface object. class WaylandBubble final : public WaylandWindow { … }; } // namespace ui #endif // UI_OZONE_PLATFORM_WAYLAND_HOST_WAYLAND_BUBBLE_H_