// 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_WAYLAND_SHM_H_ #define UI_OZONE_PLATFORM_WAYLAND_HOST_WAYLAND_SHM_H_ #include "base/files/scoped_file.h" #include "base/memory/raw_ptr.h" #include "ui/gfx/geometry/rect.h" #include "ui/ozone/platform/wayland/common/wayland_object.h" #include "ui/ozone/platform/wayland/common/wayland_util.h" namespace ui { class WaylandConnection; // Wrapper around |wl_shm| Wayland factory, which creates // |wl_buffer|s backed by a fd to a shared memory. class WaylandShm : public wl::GlobalObjectRegistrar<WaylandShm> { … }; } // namespace ui #endif // UI_OZONE_PLATFORM_WAYLAND_HOST_WAYLAND_SHM_H_