Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(19)

Side by Side Diff: ui/gfx/icc_profile.h

Issue 2660393002: Use gfx::ColorSpace instead of SkColorSpace in Blink (Closed)
Patch Set: Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 const std::vector<char>& GetData() const; 61 const std::vector<char>& GetData() const;
62 62
63 #if defined(OS_WIN) 63 #if defined(OS_WIN)
64 // This will read monitor ICC profiles from disk and cache the results for the 64 // This will read monitor ICC profiles from disk and cache the results for the
65 // other functions to read. This should not be called on the UI or IO thread. 65 // other functions to read. This should not be called on the UI or IO thread.
66 static void UpdateCachedProfilesOnBackgroundThread(); 66 static void UpdateCachedProfilesOnBackgroundThread();
67 static bool CachedProfilesNeedUpdate(); 67 static bool CachedProfilesNeedUpdate();
68 #endif 68 #endif
69 69
70 private: 70 private:
71 // TODO(ccameron): Remove this function once its callerrs are gone.
72 static ICCProfile FromSkColorSpace(sk_sp<SkColorSpace> color_space);
73 static bool IsValidProfileLength(size_t length); 71 static bool IsValidProfileLength(size_t length);
74 void ComputeColorSpaceAndCache(); 72 void ComputeColorSpaceAndCache();
75 73
76 // This globally identifies this ICC profile. It is used to look up this ICC 74 // This globally identifies this ICC profile. It is used to look up this ICC
77 // profile from a ColorSpace object created from it. The object is invalid if 75 // profile from a ColorSpace object created from it. The object is invalid if
78 // |id_| is zero. 76 // |id_| is zero.
79 uint64_t id_ = 0; 77 uint64_t id_ = 0;
80 std::vector<char> data_; 78 std::vector<char> data_;
81 79
82 gfx::ColorSpace color_space_; 80 gfx::ColorSpace color_space_;
83 81
84 FRIEND_TEST_ALL_PREFIXES(SimpleColorSpace, BT709toSRGBICC); 82 FRIEND_TEST_ALL_PREFIXES(SimpleColorSpace, BT709toSRGBICC);
85 FRIEND_TEST_ALL_PREFIXES(SimpleColorSpace, GetColorSpace); 83 FRIEND_TEST_ALL_PREFIXES(SimpleColorSpace, GetColorSpace);
86 friend int ::LLVMFuzzerTestOneInput(const uint8_t*, size_t); 84 friend int ::LLVMFuzzerTestOneInput(const uint8_t*, size_t);
87 friend class ColorSpace; 85 friend class ColorSpace;
88 friend struct IPC::ParamTraits<gfx::ICCProfile>; 86 friend struct IPC::ParamTraits<gfx::ICCProfile>;
89 }; 87 };
90 88
91 } // namespace gfx 89 } // namespace gfx
92 90
93 #endif // UI_GFX_ICC_PROFILE_H_ 91 #endif // UI_GFX_ICC_PROFILE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698