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

Unified Diff: content/public/common/screen_info.cc

Issue 2325773003: cc: Plumb the monitor color profile to renderer for rasterization (Closed)
Patch Set: Unrevert Created 4 years, 3 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 | « content/public/common/screen_info.h ('k') | content/renderer/gpu/render_widget_compositor.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/common/screen_info.cc
diff --git a/content/public/common/screen_info.cc b/content/public/common/screen_info.cc
index 1f570a90a19e2394d9e97f679309668ea8ccbfb8..acd02a042b1a904d057364ffad1c727beecb963a 100644
--- a/content/public/common/screen_info.cc
+++ b/content/public/common/screen_info.cc
@@ -6,8 +6,13 @@
namespace content {
+ScreenInfo::ScreenInfo() = default;
+ScreenInfo::ScreenInfo(const ScreenInfo& other) = default;
+ScreenInfo::~ScreenInfo() = default;
+
bool ScreenInfo::operator==(const ScreenInfo& other) const {
return device_scale_factor == other.device_scale_factor &&
+ icc_profile == other.icc_profile &&
depth == other.depth &&
depth_per_component == other.depth_per_component &&
is_monochrome == other.is_monochrome &&
« no previous file with comments | « content/public/common/screen_info.h ('k') | content/renderer/gpu/render_widget_compositor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698