#include "ui/gfx/test/icc_profiles.h"
namespace gfx {
namespace {
const unsigned char generic_rgb_profile_data[] = …;
const unsigned char srgb_profile_data[] = …;
const unsigned char colorspin_profile_data[] = …;
const unsigned char adobe_rgb_profile_data[] = …;
}
unsigned char no_analytic_tr_fn_profile_data[] = …;
const unsigned char a2b_only_profile_data[] = …;
unsigned char overshoot_profile_data[] = …;
ICCProfile ICCProfileForTestingAdobeRGB() { … }
ICCProfile ICCProfileForTestingGenericRGB() { … }
ICCProfile ICCProfileForTestingSRGB() { … }
ICCProfile ICCProfileForTestingColorSpin() { … }
ICCProfile ICCProfileForTestingNoAnalyticTrFn() { … }
ICCProfile ICCProfileForTestingA2BOnly() { … }
ICCProfile ICCProfileForTestingOvershoot() { … }
}