#ifndef THIRD_PARTY_BLINK_RENDERER_PLATFORM_GRAPHICS_COLOR_SPACE_GAMUT_H_
#define THIRD_PARTY_BLINK_RENDERER_PLATFORM_GRAPHICS_COLOR_SPACE_GAMUT_H_
#include "third_party/blink/renderer/platform/platform_export.h"
struct skcms_ICCProfile;
namespace display {
struct ScreenInfo;
}
namespace blink {
enum class ColorSpaceGamut { … };
namespace color_space_utilities {
PLATFORM_EXPORT ColorSpaceGamut GetColorSpaceGamut(const display::ScreenInfo&);
ColorSpaceGamut GetColorSpaceGamut(const skcms_ICCProfile*);
}
}
#endif