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

Side by Side 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 unified diff | Download patch
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/public/common/screen_info.h" 5 #include "content/public/common/screen_info.h"
6 6
7 namespace content { 7 namespace content {
8 8
9 ScreenInfo::ScreenInfo() = default;
10 ScreenInfo::ScreenInfo(const ScreenInfo& other) = default;
11 ScreenInfo::~ScreenInfo() = default;
12
9 bool ScreenInfo::operator==(const ScreenInfo& other) const { 13 bool ScreenInfo::operator==(const ScreenInfo& other) const {
10 return device_scale_factor == other.device_scale_factor && 14 return device_scale_factor == other.device_scale_factor &&
11 depth == other.depth && 15 depth == other.depth &&
12 depth_per_component == other.depth_per_component && 16 depth_per_component == other.depth_per_component &&
13 is_monochrome == other.is_monochrome && 17 is_monochrome == other.is_monochrome &&
14 rect == other.rect && 18 rect == other.rect &&
15 available_rect == other.available_rect && 19 available_rect == other.available_rect &&
16 orientation_type == other.orientation_type && 20 orientation_type == other.orientation_type &&
17 orientation_angle == other.orientation_angle; 21 orientation_angle == other.orientation_angle;
18 } 22 }
19 23
20 bool ScreenInfo::operator!=(const ScreenInfo& other) const { 24 bool ScreenInfo::operator!=(const ScreenInfo& other) const {
21 return !(*this == other); 25 return !(*this == other);
22 } 26 }
23 27
24 28
25 } // namespace content 29 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698