// Copyright 2023 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_SINGLE_PIXEL_BUFFER_H_ #define UI_OZONE_PLATFORM_WAYLAND_HOST_SINGLE_PIXEL_BUFFER_H_ #include "third_party/skia/include/core/SkColor.h" #include "ui/ozone/platform/wayland/common/wayland_object.h" namespace gfx { class Size; } namespace ui { class WaylandConnection; // Wraps the single-pixel-buffer, which is provided via // single_pixel_buffer interface. class SinglePixelBuffer : public wl::GlobalObjectRegistrar<SinglePixelBuffer> { … }; } // namespace ui #endif // UI_OZONE_PLATFORM_WAYLAND_HOST_SINGLE_PIXEL_BUFFER_H_