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

Unified Diff: ui/gfx/icc_profile.cc

Issue 2641973002: Use gfx::ICCProfile type consistently (Closed)
Patch Set: Created 3 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/gfx/icc_profile.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gfx/icc_profile.cc
diff --git a/ui/gfx/icc_profile.cc b/ui/gfx/icc_profile.cc
index 6a1bead8c4f5a8dc921055d4808ab9e65d075b89..c5e84d1fc4e9b5fc830b949d9ba9c7d2f1bd5b0a 100644
--- a/ui/gfx/icc_profile.cc
+++ b/ui/gfx/icc_profile.cc
@@ -56,6 +56,10 @@ bool ICCProfile::operator==(const ICCProfile& other) const {
return false;
}
+bool ICCProfile::operator!=(const ICCProfile& other) const {
+ return !(*this == other);
+}
+
// static
ICCProfile ICCProfile::FromData(const char* data, size_t size) {
ICCProfile icc_profile;
« no previous file with comments | « ui/gfx/icc_profile.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698