// 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_GFX_LINUX_GPU_MEMORY_BUFFER_SUPPORT_X11_H_ #define UI_GFX_LINUX_GPU_MEMORY_BUFFER_SUPPORT_X11_H_ #include <memory> #include <vector> #include "base/component_export.h" #include "base/no_destructor.h" #include "ui/gfx/buffer_types.h" #include "ui/gfx/native_pixmap_handle.h" namespace gfx { class Size; } namespace ui { class GbmBuffer; class GbmDevice; // Obtains and holds a GbmDevice for creating GbmBuffers. Maintains a list of // supported buffer configurations. class COMPONENT_EXPORT(GBM_SUPPORT_X11) GpuMemoryBufferSupportX11 { … }; } // namespace ui #endif // UI_GFX_LINUX_GPU_MEMORY_BUFFER_SUPPORT_X11_H_