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

Unified Diff: ash/display/display_color_manager_chromeos.cc

Issue 1775023002: Enterprise policy to prevent queries to the Quirks Server (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix display unit test Created 4 years, 9 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: ash/display/display_color_manager_chromeos.cc
diff --git a/ash/display/display_color_manager_chromeos.cc b/ash/display/display_color_manager_chromeos.cc
index eb347449f0c3bb61c29fffa9db04e4aa9d234890..278dcb31d8c3fe34e3222ced8e33d43f55a87d54 100644
--- a/ash/display/display_color_manager_chromeos.cc
+++ b/ash/display/display_color_manager_chromeos.cc
@@ -38,7 +38,8 @@ scoped_ptr<DisplayColorManager::ColorCalibrationData> ParseDisplayProfile(
qcms_profile_get_vcgt_channel_length(display_profile);
if (!has_color_correction_matrix && !vcgt_channel_length) {
- LOG(WARNING) << "No vcgt table in ICC file: " << path.value();
+ LOG(WARNING) << "No vcgt table or color correction matrix in ICC file: "
+ << path.value();
qcms_profile_release(display_profile);
return nullptr;
}

Powered by Google App Engine
This is Rietveld 408576698