OLD | NEW |
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 <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include <vector> | 10 #include <vector> |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 IPC_STRUCT_TRAITS_BEGIN(ui::DisplaySnapshot_Params) | 44 IPC_STRUCT_TRAITS_BEGIN(ui::DisplaySnapshot_Params) |
45 IPC_STRUCT_TRAITS_MEMBER(display_id) | 45 IPC_STRUCT_TRAITS_MEMBER(display_id) |
46 IPC_STRUCT_TRAITS_MEMBER(origin) | 46 IPC_STRUCT_TRAITS_MEMBER(origin) |
47 IPC_STRUCT_TRAITS_MEMBER(physical_size) | 47 IPC_STRUCT_TRAITS_MEMBER(physical_size) |
48 IPC_STRUCT_TRAITS_MEMBER(type) | 48 IPC_STRUCT_TRAITS_MEMBER(type) |
49 IPC_STRUCT_TRAITS_MEMBER(is_aspect_preserving_scaling) | 49 IPC_STRUCT_TRAITS_MEMBER(is_aspect_preserving_scaling) |
50 IPC_STRUCT_TRAITS_MEMBER(has_overscan) | 50 IPC_STRUCT_TRAITS_MEMBER(has_overscan) |
51 IPC_STRUCT_TRAITS_MEMBER(display_name) | 51 IPC_STRUCT_TRAITS_MEMBER(display_name) |
52 IPC_STRUCT_TRAITS_MEMBER(sys_path) | 52 IPC_STRUCT_TRAITS_MEMBER(sys_path) |
53 IPC_STRUCT_TRAITS_MEMBER(modes) | 53 IPC_STRUCT_TRAITS_MEMBER(modes) |
| 54 IPC_STRUCT_TRAITS_MEMBER(edid) |
54 IPC_STRUCT_TRAITS_MEMBER(has_current_mode) | 55 IPC_STRUCT_TRAITS_MEMBER(has_current_mode) |
55 IPC_STRUCT_TRAITS_MEMBER(current_mode) | 56 IPC_STRUCT_TRAITS_MEMBER(current_mode) |
56 IPC_STRUCT_TRAITS_MEMBER(has_native_mode) | 57 IPC_STRUCT_TRAITS_MEMBER(has_native_mode) |
57 IPC_STRUCT_TRAITS_MEMBER(native_mode) | 58 IPC_STRUCT_TRAITS_MEMBER(native_mode) |
58 IPC_STRUCT_TRAITS_MEMBER(product_id) | 59 IPC_STRUCT_TRAITS_MEMBER(product_id) |
59 IPC_STRUCT_TRAITS_MEMBER(string_representation) | 60 IPC_STRUCT_TRAITS_MEMBER(string_representation) |
60 IPC_STRUCT_TRAITS_END() | 61 IPC_STRUCT_TRAITS_END() |
61 | 62 |
62 IPC_STRUCT_TRAITS_BEGIN(ui::GammaRampRGBEntry) | 63 IPC_STRUCT_TRAITS_BEGIN(ui::GammaRampRGBEntry) |
63 IPC_STRUCT_TRAITS_MEMBER(r) | 64 IPC_STRUCT_TRAITS_MEMBER(r) |
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
177 | 178 |
178 // Response to OzoneGpuMsg_RelinquishDisplayControl. | 179 // Response to OzoneGpuMsg_RelinquishDisplayControl. |
179 IPC_MESSAGE_CONTROL1(OzoneHostMsg_DisplayControlRelinquished, | 180 IPC_MESSAGE_CONTROL1(OzoneHostMsg_DisplayControlRelinquished, |
180 bool /* success */) | 181 bool /* success */) |
181 | 182 |
182 // Response to OzoneGpuMsg_CheckOverlayCapabilities. Returns list of supported | 183 // Response to OzoneGpuMsg_CheckOverlayCapabilities. Returns list of supported |
183 // params. | 184 // params. |
184 IPC_MESSAGE_CONTROL2(OzoneHostMsg_OverlayCapabilitiesReceived, | 185 IPC_MESSAGE_CONTROL2(OzoneHostMsg_OverlayCapabilitiesReceived, |
185 gfx::AcceleratedWidget /* widget */, | 186 gfx::AcceleratedWidget /* widget */, |
186 std::vector<ui::OverlayCheck_Params> /* overlays */) | 187 std::vector<ui::OverlayCheck_Params> /* overlays */) |
OLD | NEW |