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

Unified Diff: content/browser/web_contents/web_contents_view_aura.cc

Issue 2950183002: color: Use ICCProfile from display::Display instead of FromBestMonitor (Closed)
Patch Set: Use forced color profile in display::Display ctor Created 3 years, 6 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/browser/web_contents/web_contents_view_aura.cc
diff --git a/content/browser/web_contents/web_contents_view_aura.cc b/content/browser/web_contents/web_contents_view_aura.cc
index 84b906e8b9659006777f8fbae1bd2befb04e3d84..58b55db1bcfcbf53ca99f99ea4ec2bf54aad9617 100644
--- a/content/browser/web_contents/web_contents_view_aura.cc
+++ b/content/browser/web_contents/web_contents_view_aura.cc
@@ -711,10 +711,7 @@ void GetScreenInfoForWindow(ScreenInfo* results,
results->depth_per_component = display.depth_per_component();
results->is_monochrome = display.is_monochrome();
results->device_scale_factor = display.device_scale_factor();
- results->icc_profile = gfx::ICCProfile::FromBestMonitor();
- if (!results->icc_profile.IsValid())
- gfx::ColorSpace::CreateSRGB().GetICCProfile(&results->icc_profile);
- DCHECK(results->icc_profile.IsValid());
+ display.color_space().GetICCProfile(&results->icc_profile);
// The Display rotation and the ScreenInfo orientation are not the same
// angle. The former is the physical display rotation while the later is the
« no previous file with comments | « content/browser/renderer_host/render_widget_host_view_mac.mm ('k') | content/browser/web_contents/web_contents_view_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698