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

Side by Side Diff: ui/ozone/common/gpu/ozone_gpu_messages.h

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: 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 // Multiply-included message file, hence no include guard here, but see below 5 // Multiply-included message file, hence no include guard here, but see below
6 // for a much smaller-than-usual include guard section. 6 // for a much smaller-than-usual include guard section.
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/file_descriptor_posix.h" 10 #include "base/file_descriptor_posix.h"
(...skipping 30 matching lines...) Expand all
41 IPC_STRUCT_TRAITS_MEMBER(physical_size) 41 IPC_STRUCT_TRAITS_MEMBER(physical_size)
42 IPC_STRUCT_TRAITS_MEMBER(type) 42 IPC_STRUCT_TRAITS_MEMBER(type)
43 IPC_STRUCT_TRAITS_MEMBER(is_aspect_preserving_scaling) 43 IPC_STRUCT_TRAITS_MEMBER(is_aspect_preserving_scaling)
44 IPC_STRUCT_TRAITS_MEMBER(has_overscan) 44 IPC_STRUCT_TRAITS_MEMBER(has_overscan)
45 IPC_STRUCT_TRAITS_MEMBER(display_name) 45 IPC_STRUCT_TRAITS_MEMBER(display_name)
46 IPC_STRUCT_TRAITS_MEMBER(modes) 46 IPC_STRUCT_TRAITS_MEMBER(modes)
47 IPC_STRUCT_TRAITS_MEMBER(has_current_mode) 47 IPC_STRUCT_TRAITS_MEMBER(has_current_mode)
48 IPC_STRUCT_TRAITS_MEMBER(current_mode) 48 IPC_STRUCT_TRAITS_MEMBER(current_mode)
49 IPC_STRUCT_TRAITS_MEMBER(has_native_mode) 49 IPC_STRUCT_TRAITS_MEMBER(has_native_mode)
50 IPC_STRUCT_TRAITS_MEMBER(native_mode) 50 IPC_STRUCT_TRAITS_MEMBER(native_mode)
51 IPC_STRUCT_TRAITS_MEMBER(product_id)
51 IPC_STRUCT_TRAITS_MEMBER(string_representation) 52 IPC_STRUCT_TRAITS_MEMBER(string_representation)
52 IPC_STRUCT_TRAITS_END() 53 IPC_STRUCT_TRAITS_END()
53 54
54 IPC_STRUCT_TRAITS_BEGIN(ui::GammaRampRGBEntry) 55 IPC_STRUCT_TRAITS_BEGIN(ui::GammaRampRGBEntry)
55 IPC_STRUCT_TRAITS_MEMBER(r) 56 IPC_STRUCT_TRAITS_MEMBER(r)
56 IPC_STRUCT_TRAITS_MEMBER(g) 57 IPC_STRUCT_TRAITS_MEMBER(g)
57 IPC_STRUCT_TRAITS_MEMBER(b) 58 IPC_STRUCT_TRAITS_MEMBER(b)
58 IPC_STRUCT_TRAITS_END() 59 IPC_STRUCT_TRAITS_END()
59 60
60 //------------------------------------------------------------------------------ 61 //------------------------------------------------------------------------------
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 // Response for OzoneGpuMsg_GetHDCPState. 139 // Response for OzoneGpuMsg_GetHDCPState.
139 IPC_MESSAGE_CONTROL3(OzoneHostMsg_HDCPStateReceived, 140 IPC_MESSAGE_CONTROL3(OzoneHostMsg_HDCPStateReceived,
140 int64_t /* display_id */, 141 int64_t /* display_id */,
141 bool /* success */, 142 bool /* success */,
142 ui::HDCPState /* state */) 143 ui::HDCPState /* state */)
143 144
144 // Response for OzoneGpuMsg_SetHDCPState. 145 // Response for OzoneGpuMsg_SetHDCPState.
145 IPC_MESSAGE_CONTROL2(OzoneHostMsg_HDCPStateUpdated, 146 IPC_MESSAGE_CONTROL2(OzoneHostMsg_HDCPStateUpdated,
146 int64_t /* display_id */, 147 int64_t /* display_id */,
147 bool /* success */) 148 bool /* success */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698