// Copyright 2022 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_ZCR_COLOR_SPACE_H_ #define UI_OZONE_PLATFORM_WAYLAND_HOST_WAYLAND_ZCR_COLOR_SPACE_H_ #include <array> #include <memory> #include <utility> #include "base/functional/callback.h" #include "base/memory/ref_counted.h" #include "ui/gfx/color_space.h" #include "ui/ozone/platform/wayland/common/wayland_object.h" namespace ui { class WaylandZcrColorSpace; // ZcrColorSpace is used to send color space information over wayland protocol. // its requests and events are specified in chrome-color-management.xml. // The ui::gfx::ColorSpace equivalent of ZcrColorSpace can be gotten with // gfx_color_space(). class WaylandZcrColorSpace : public base::RefCounted<WaylandZcrColorSpace> { … }; } // namespace ui #endif // UI_OZONE_PLATFORM_WAYLAND_HOST_WAYLAND_ZCR_COLOR_SPACE_H_