| 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 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 IPC_STRUCT_TRAITS_MEMBER(gl_vendor) | 170 IPC_STRUCT_TRAITS_MEMBER(gl_vendor) |
| 171 IPC_STRUCT_TRAITS_MEMBER(gl_renderer) | 171 IPC_STRUCT_TRAITS_MEMBER(gl_renderer) |
| 172 IPC_STRUCT_TRAITS_MEMBER(gl_extensions) | 172 IPC_STRUCT_TRAITS_MEMBER(gl_extensions) |
| 173 IPC_STRUCT_TRAITS_MEMBER(gl_ws_vendor) | 173 IPC_STRUCT_TRAITS_MEMBER(gl_ws_vendor) |
| 174 IPC_STRUCT_TRAITS_MEMBER(gl_ws_version) | 174 IPC_STRUCT_TRAITS_MEMBER(gl_ws_version) |
| 175 IPC_STRUCT_TRAITS_MEMBER(gl_ws_extensions) | 175 IPC_STRUCT_TRAITS_MEMBER(gl_ws_extensions) |
| 176 IPC_STRUCT_TRAITS_MEMBER(gl_reset_notification_strategy) | 176 IPC_STRUCT_TRAITS_MEMBER(gl_reset_notification_strategy) |
| 177 IPC_STRUCT_TRAITS_MEMBER(can_lose_context) | 177 IPC_STRUCT_TRAITS_MEMBER(can_lose_context) |
| 178 IPC_STRUCT_TRAITS_MEMBER(performance_stats) | 178 IPC_STRUCT_TRAITS_MEMBER(performance_stats) |
| 179 IPC_STRUCT_TRAITS_MEMBER(software_rendering) | 179 IPC_STRUCT_TRAITS_MEMBER(software_rendering) |
| 180 IPC_STRUCT_TRAITS_MEMBER(direct_rendering) |
| 180 IPC_STRUCT_TRAITS_MEMBER(sandboxed) | 181 IPC_STRUCT_TRAITS_MEMBER(sandboxed) |
| 181 #if defined(OS_WIN) | 182 #if defined(OS_WIN) |
| 182 IPC_STRUCT_TRAITS_MEMBER(dx_diagnostics) | 183 IPC_STRUCT_TRAITS_MEMBER(dx_diagnostics) |
| 183 #endif | 184 #endif |
| 184 IPC_STRUCT_TRAITS_END() | 185 IPC_STRUCT_TRAITS_END() |
| 185 | 186 |
| 186 IPC_STRUCT_TRAITS_BEGIN(gpu::Capabilities) | 187 IPC_STRUCT_TRAITS_BEGIN(gpu::Capabilities) |
| 187 IPC_STRUCT_TRAITS_MEMBER(post_sub_buffer) | 188 IPC_STRUCT_TRAITS_MEMBER(post_sub_buffer) |
| 188 IPC_STRUCT_TRAITS_MEMBER(fast_npot_mo8_textures) | 189 IPC_STRUCT_TRAITS_MEMBER(fast_npot_mo8_textures) |
| 189 IPC_STRUCT_TRAITS_MEMBER(egl_image_external) | 190 IPC_STRUCT_TRAITS_MEMBER(egl_image_external) |
| (...skipping 581 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 771 | 772 |
| 772 // Notify the renderer that an output buffer has been filled with encoded data. | 773 // Notify the renderer that an output buffer has been filled with encoded data. |
| 773 IPC_MESSAGE_ROUTED3(AcceleratedVideoEncoderHostMsg_BitstreamBufferReady, | 774 IPC_MESSAGE_ROUTED3(AcceleratedVideoEncoderHostMsg_BitstreamBufferReady, |
| 774 int32 /* bitstream_buffer_id */, | 775 int32 /* bitstream_buffer_id */, |
| 775 uint32 /* payload_size */, | 776 uint32 /* payload_size */, |
| 776 bool /* key_frame */) | 777 bool /* key_frame */) |
| 777 | 778 |
| 778 // Report error condition. | 779 // Report error condition. |
| 779 IPC_MESSAGE_ROUTED1(AcceleratedVideoEncoderHostMsg_NotifyError, | 780 IPC_MESSAGE_ROUTED1(AcceleratedVideoEncoderHostMsg_NotifyError, |
| 780 media::VideoEncodeAccelerator::Error /* error */) | 781 media::VideoEncodeAccelerator::Error /* error */) |
| OLD | NEW |