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

Unified Diff: content/shell/app/shell_main_delegate.cc

Issue 2926763004: color: Enable color correct rendering on all layout tests (Closed)
Patch Set: One more expectations 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/TestExpectations » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/shell/app/shell_main_delegate.cc
diff --git a/content/shell/app/shell_main_delegate.cc b/content/shell/app/shell_main_delegate.cc
index e98bd852af77fa12d207b0151a2b2bcbd966ee42..546b0126a0dd88960e40b9dc4878968063d67161 100644
--- a/content/shell/app/shell_main_delegate.cc
+++ b/content/shell/app/shell_main_delegate.cc
@@ -213,21 +213,11 @@ bool ShellMainDelegate::BasicStartupComplete(int* exit_code) {
command_line.AppendSwitch(switches::kDisableGpuRasterization);
}
- // If the virtual test suite didn't specify a color space, then use the
- // default layout test color space (GenericRGB for Mac and sRGB for all
- // other platforms).
- if (!command_line.HasSwitch(switches::kForceColorProfile)) {
-#if defined(OS_MACOSX)
- if (command_line.HasSwitch(switches::kEnableColorCorrectRendering)) {
- command_line.AppendSwitchASCII(switches::kForceColorProfile, "srgb");
- } else {
- command_line.AppendSwitchASCII(switches::kForceColorProfile,
- "generic-rgb");
- }
-#else
+ // Enable color correct rendering. If the virtual test suite didn't specify
+ // a color space, then use sRGB.
+ command_line.AppendSwitch(switches::kEnableColorCorrectRendering);
+ if (!command_line.HasSwitch(switches::kForceColorProfile))
command_line.AppendSwitchASCII(switches::kForceColorProfile, "srgb");
-#endif
- }
// We want stable/baseline results when running layout tests.
command_line.AppendSwitch(switches::kDisableSkiaRuntimeOpts);
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/TestExpectations » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698