OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
141 IPC_STRUCT_TRAITS_MEMBER(driver_version) | 141 IPC_STRUCT_TRAITS_MEMBER(driver_version) |
142 IPC_STRUCT_TRAITS_MEMBER(driver_date) | 142 IPC_STRUCT_TRAITS_MEMBER(driver_date) |
143 IPC_STRUCT_TRAITS_MEMBER(pixel_shader_version) | 143 IPC_STRUCT_TRAITS_MEMBER(pixel_shader_version) |
144 IPC_STRUCT_TRAITS_MEMBER(vertex_shader_version) | 144 IPC_STRUCT_TRAITS_MEMBER(vertex_shader_version) |
145 IPC_STRUCT_TRAITS_MEMBER(machine_model) | 145 IPC_STRUCT_TRAITS_MEMBER(machine_model) |
146 IPC_STRUCT_TRAITS_MEMBER(gl_version) | 146 IPC_STRUCT_TRAITS_MEMBER(gl_version) |
147 IPC_STRUCT_TRAITS_MEMBER(gl_version_string) | 147 IPC_STRUCT_TRAITS_MEMBER(gl_version_string) |
148 IPC_STRUCT_TRAITS_MEMBER(gl_vendor) | 148 IPC_STRUCT_TRAITS_MEMBER(gl_vendor) |
149 IPC_STRUCT_TRAITS_MEMBER(gl_renderer) | 149 IPC_STRUCT_TRAITS_MEMBER(gl_renderer) |
150 IPC_STRUCT_TRAITS_MEMBER(gl_extensions) | 150 IPC_STRUCT_TRAITS_MEMBER(gl_extensions) |
| 151 IPC_STRUCT_TRAITS_MEMBER(gl_ws_vendor) |
| 152 IPC_STRUCT_TRAITS_MEMBER(gl_ws_version) |
| 153 IPC_STRUCT_TRAITS_MEMBER(gl_ws_extensions) |
151 IPC_STRUCT_TRAITS_MEMBER(can_lose_context) | 154 IPC_STRUCT_TRAITS_MEMBER(can_lose_context) |
152 IPC_STRUCT_TRAITS_MEMBER(gpu_accessible) | 155 IPC_STRUCT_TRAITS_MEMBER(gpu_accessible) |
153 IPC_STRUCT_TRAITS_MEMBER(performance_stats) | 156 IPC_STRUCT_TRAITS_MEMBER(performance_stats) |
154 IPC_STRUCT_TRAITS_MEMBER(software_rendering) | 157 IPC_STRUCT_TRAITS_MEMBER(software_rendering) |
155 IPC_STRUCT_TRAITS_MEMBER(sandboxed) | 158 IPC_STRUCT_TRAITS_MEMBER(sandboxed) |
156 #if defined(OS_WIN) | 159 #if defined(OS_WIN) |
157 IPC_STRUCT_TRAITS_MEMBER(dx_diagnostics) | 160 IPC_STRUCT_TRAITS_MEMBER(dx_diagnostics) |
158 #endif | 161 #endif |
159 IPC_STRUCT_TRAITS_END() | 162 IPC_STRUCT_TRAITS_END() |
160 | 163 |
(...skipping 510 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
671 | 674 |
672 // Confirm decoder has been flushed. | 675 // Confirm decoder has been flushed. |
673 IPC_MESSAGE_ROUTED0(AcceleratedVideoDecoderHostMsg_FlushDone) | 676 IPC_MESSAGE_ROUTED0(AcceleratedVideoDecoderHostMsg_FlushDone) |
674 | 677 |
675 // Confirm decoder has been reset. | 678 // Confirm decoder has been reset. |
676 IPC_MESSAGE_ROUTED0(AcceleratedVideoDecoderHostMsg_ResetDone) | 679 IPC_MESSAGE_ROUTED0(AcceleratedVideoDecoderHostMsg_ResetDone) |
677 | 680 |
678 // Video decoder has encountered an error. | 681 // Video decoder has encountered an error. |
679 IPC_MESSAGE_ROUTED1(AcceleratedVideoDecoderHostMsg_ErrorNotification, | 682 IPC_MESSAGE_ROUTED1(AcceleratedVideoDecoderHostMsg_ErrorNotification, |
680 uint32) /* Error ID */ | 683 uint32) /* Error ID */ |
OLD | NEW |