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

Side by Side Diff: ui/ozone/common/gpu/ozone_gpu_message_params.cc

Issue 1129863003: Load ICC file for display color correction based on display product identifier (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Nuked extra {} Created 5 years, 7 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 "ui/ozone/common/gpu/ozone_gpu_message_params.h" 5 #include "ui/ozone/common/gpu/ozone_gpu_message_params.h"
6 6
7 namespace ui { 7 namespace ui {
8 8
9 DisplayMode_Params::DisplayMode_Params() 9 DisplayMode_Params::DisplayMode_Params()
10 : size(), is_interlaced(false), refresh_rate(0.0f) {} 10 : size(), is_interlaced(false), refresh_rate(0.0f) {}
11 11
12 DisplayMode_Params::~DisplayMode_Params() {} 12 DisplayMode_Params::~DisplayMode_Params() {}
13 13
14 DisplaySnapshot_Params::DisplaySnapshot_Params() 14 DisplaySnapshot_Params::DisplaySnapshot_Params()
15 : display_id(0), 15 : display_id(0),
16 origin(), 16 origin(),
17 physical_size(), 17 physical_size(),
18 type(ui::DISPLAY_CONNECTION_TYPE_NONE), 18 type(ui::DISPLAY_CONNECTION_TYPE_NONE),
19 is_aspect_preserving_scaling(false), 19 is_aspect_preserving_scaling(false),
20 has_overscan(false), 20 has_overscan(false),
21 display_name(), 21 display_name(),
22 modes(), 22 modes(),
23 has_current_mode(false), 23 has_current_mode(false),
24 current_mode(), 24 current_mode(),
25 has_native_mode(false), 25 has_native_mode(false),
26 native_mode() {} 26 native_mode(),
27 product_id(0) {
28 }
27 29
28 DisplaySnapshot_Params::~DisplaySnapshot_Params() {} 30 DisplaySnapshot_Params::~DisplaySnapshot_Params() {}
29 31
30 } // namespace ui 32 } // namespace ui
OLDNEW
« no previous file with comments | « ui/ozone/common/gpu/ozone_gpu_message_params.h ('k') | ui/ozone/common/gpu/ozone_gpu_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698