| Index: content/public/common/screen_info.cc
|
| diff --git a/content/public/common/screen_info.cc b/content/public/common/screen_info.cc
|
| index acd02a042b1a904d057364ffad1c727beecb963a..488e3681027573e8fa7602ff7d3ba87e37103670 100644
|
| --- a/content/public/common/screen_info.cc
|
| +++ b/content/public/common/screen_info.cc
|
| @@ -12,11 +12,9 @@ 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 &&
|
| + color_space == other.color_space && depth == other.depth &&
|
| depth_per_component == other.depth_per_component &&
|
| - is_monochrome == other.is_monochrome &&
|
| - rect == other.rect &&
|
| + is_monochrome == other.is_monochrome && rect == other.rect &&
|
| available_rect == other.available_rect &&
|
| orientation_type == other.orientation_type &&
|
| orientation_angle == other.orientation_angle;
|
|
|