| 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 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 IPC_STRUCT_TRAITS_MEMBER(amd_switchable) | 159 IPC_STRUCT_TRAITS_MEMBER(amd_switchable) |
| 160 IPC_STRUCT_TRAITS_MEMBER(lenovo_dcute) | 160 IPC_STRUCT_TRAITS_MEMBER(lenovo_dcute) |
| 161 IPC_STRUCT_TRAITS_MEMBER(gpu) | 161 IPC_STRUCT_TRAITS_MEMBER(gpu) |
| 162 IPC_STRUCT_TRAITS_MEMBER(secondary_gpus) | 162 IPC_STRUCT_TRAITS_MEMBER(secondary_gpus) |
| 163 IPC_STRUCT_TRAITS_MEMBER(adapter_luid) | 163 IPC_STRUCT_TRAITS_MEMBER(adapter_luid) |
| 164 IPC_STRUCT_TRAITS_MEMBER(driver_vendor) | 164 IPC_STRUCT_TRAITS_MEMBER(driver_vendor) |
| 165 IPC_STRUCT_TRAITS_MEMBER(driver_version) | 165 IPC_STRUCT_TRAITS_MEMBER(driver_version) |
| 166 IPC_STRUCT_TRAITS_MEMBER(driver_date) | 166 IPC_STRUCT_TRAITS_MEMBER(driver_date) |
| 167 IPC_STRUCT_TRAITS_MEMBER(pixel_shader_version) | 167 IPC_STRUCT_TRAITS_MEMBER(pixel_shader_version) |
| 168 IPC_STRUCT_TRAITS_MEMBER(vertex_shader_version) | 168 IPC_STRUCT_TRAITS_MEMBER(vertex_shader_version) |
| 169 IPC_STRUCT_TRAITS_MEMBER(max_msaa_samples) |
| 169 IPC_STRUCT_TRAITS_MEMBER(machine_model_name) | 170 IPC_STRUCT_TRAITS_MEMBER(machine_model_name) |
| 170 IPC_STRUCT_TRAITS_MEMBER(machine_model_version) | 171 IPC_STRUCT_TRAITS_MEMBER(machine_model_version) |
| 171 IPC_STRUCT_TRAITS_MEMBER(gl_version) | 172 IPC_STRUCT_TRAITS_MEMBER(gl_version) |
| 172 IPC_STRUCT_TRAITS_MEMBER(gl_vendor) | 173 IPC_STRUCT_TRAITS_MEMBER(gl_vendor) |
| 173 IPC_STRUCT_TRAITS_MEMBER(gl_renderer) | 174 IPC_STRUCT_TRAITS_MEMBER(gl_renderer) |
| 174 IPC_STRUCT_TRAITS_MEMBER(gl_extensions) | 175 IPC_STRUCT_TRAITS_MEMBER(gl_extensions) |
| 175 IPC_STRUCT_TRAITS_MEMBER(gl_ws_vendor) | 176 IPC_STRUCT_TRAITS_MEMBER(gl_ws_vendor) |
| 176 IPC_STRUCT_TRAITS_MEMBER(gl_ws_version) | 177 IPC_STRUCT_TRAITS_MEMBER(gl_ws_version) |
| 177 IPC_STRUCT_TRAITS_MEMBER(gl_ws_extensions) | 178 IPC_STRUCT_TRAITS_MEMBER(gl_ws_extensions) |
| 178 IPC_STRUCT_TRAITS_MEMBER(gl_reset_notification_strategy) | 179 IPC_STRUCT_TRAITS_MEMBER(gl_reset_notification_strategy) |
| (...skipping 555 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 734 int32 /* bitstream_buffer_id */, | 735 int32 /* bitstream_buffer_id */, |
| 735 uint32 /* payload_size */, | 736 uint32 /* payload_size */, |
| 736 bool /* key_frame */) | 737 bool /* key_frame */) |
| 737 | 738 |
| 738 // Report error condition. | 739 // Report error condition. |
| 739 IPC_MESSAGE_ROUTED1(AcceleratedVideoEncoderHostMsg_NotifyError, | 740 IPC_MESSAGE_ROUTED1(AcceleratedVideoEncoderHostMsg_NotifyError, |
| 740 media::VideoEncodeAccelerator::Error /* error */) | 741 media::VideoEncodeAccelerator::Error /* error */) |
| 741 | 742 |
| 742 // Send destroy request to the encoder. | 743 // Send destroy request to the encoder. |
| 743 IPC_MESSAGE_ROUTED0(AcceleratedVideoEncoderMsg_Destroy) | 744 IPC_MESSAGE_ROUTED0(AcceleratedVideoEncoderMsg_Destroy) |
| OLD | NEW |