// Copyright 2016 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_ICC_PROFILE_H_ #define UI_GFX_ICC_PROFILE_H_ #include <stdint.h> #include <set> #include <vector> #include "base/gtest_prod_util.h" #include "base/memory/ref_counted.h" #include "third_party/skia/modules/skcms/skcms.h" #include "ui/gfx/color_space.h" extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size); namespace IPC { template <class P> struct ParamTraits; } // namespace IPC namespace gfx { // Used to represent a full ICC profile, usually retrieved from a monitor. It // can be lossily compressed into a ColorSpace object. This structure should // only be sent from higher-privilege processes to lower-privilege processes, // as parsing this structure is not secure. class COLOR_SPACE_EXPORT ICCProfile { … }; } // namespace gfx #endif // UI_GFX_ICC_PROFILE_H_