| 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 <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 Loading... |
| 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 Loading... |
| 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 */) |
| OLD | NEW |