| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef UI_GFX_ICC_PROFILE_H_ | 5 #ifndef UI_GFX_ICC_PROFILE_H_ |
| 6 #define UI_GFX_ICC_PROFILE_H_ | 6 #define UI_GFX_ICC_PROFILE_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 static bool IsValidProfileLength(size_t length); | 64 static bool IsValidProfileLength(size_t length); |
| 65 | 65 |
| 66 bool valid_ = false; | 66 bool valid_ = false; |
| 67 std::vector<char> data_; | 67 std::vector<char> data_; |
| 68 | 68 |
| 69 // This globally identifies this ICC profile. It is used to look up this ICC | 69 // This globally identifies this ICC profile. It is used to look up this ICC |
| 70 // profile from a ColorSpace object created from it. | 70 // profile from a ColorSpace object created from it. |
| 71 uint64_t id_ = 0; | 71 uint64_t id_ = 0; |
| 72 | 72 |
| 73 FRIEND_TEST_ALL_PREFIXES(SimpleColorSpace, BT709toSRGBICC); | 73 FRIEND_TEST_ALL_PREFIXES(SimpleColorSpace, BT709toSRGBICC); |
| 74 FRIEND_TEST_ALL_PREFIXES(SimpleColorSpace, GetColorSpace); |
| 74 friend int ::LLVMFuzzerTestOneInput(const uint8_t*, size_t); | 75 friend int ::LLVMFuzzerTestOneInput(const uint8_t*, size_t); |
| 75 friend class ColorSpace; | 76 friend class ColorSpace; |
| 76 friend struct IPC::ParamTraits<gfx::ICCProfile>; | 77 friend struct IPC::ParamTraits<gfx::ICCProfile>; |
| 77 }; | 78 }; |
| 78 | 79 |
| 79 } // namespace gfx | 80 } // namespace gfx |
| 80 | 81 |
| 81 #endif // UI_GFX_ICC_PROFILE_H_ | 82 #endif // UI_GFX_ICC_PROFILE_H_ |
| OLD | NEW |