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

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

Issue 2325773003: cc: Plumb the monitor color profile to renderer for rasterization (Closed)
Patch Set: Make public_deps instead of deps 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
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..d215aa6730249420c6c7af149fcefe1fbe374e19 100644
--- a/content/public/common/screen_info.cc
+++ b/content/public/common/screen_info.cc
@@ -6,6 +6,10 @@
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 &&
depth == other.depth &&

Powered by Google App Engine
This is Rietveld 408576698