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 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
187 #if defined(OS_WIN) | 187 #if defined(OS_WIN) |
188 IPC_STRUCT_TRAITS_MEMBER(dx_diagnostics) | 188 IPC_STRUCT_TRAITS_MEMBER(dx_diagnostics) |
189 #endif | 189 #endif |
190 IPC_STRUCT_TRAITS_END() | 190 IPC_STRUCT_TRAITS_END() |
191 | 191 |
192 IPC_STRUCT_TRAITS_BEGIN(gpu::Capabilities) | 192 IPC_STRUCT_TRAITS_BEGIN(gpu::Capabilities) |
193 IPC_STRUCT_TRAITS_MEMBER(post_sub_buffer) | 193 IPC_STRUCT_TRAITS_MEMBER(post_sub_buffer) |
194 IPC_STRUCT_TRAITS_MEMBER(egl_image_external) | 194 IPC_STRUCT_TRAITS_MEMBER(egl_image_external) |
195 IPC_STRUCT_TRAITS_MEMBER(texture_format_bgra8888) | 195 IPC_STRUCT_TRAITS_MEMBER(texture_format_bgra8888) |
196 IPC_STRUCT_TRAITS_MEMBER(texture_format_etc1) | 196 IPC_STRUCT_TRAITS_MEMBER(texture_format_etc1) |
| 197 IPC_STRUCT_TRAITS_MEMBER(texture_format_etc1_npot) |
197 IPC_STRUCT_TRAITS_MEMBER(texture_rectangle) | 198 IPC_STRUCT_TRAITS_MEMBER(texture_rectangle) |
198 IPC_STRUCT_TRAITS_MEMBER(iosurface) | 199 IPC_STRUCT_TRAITS_MEMBER(iosurface) |
199 IPC_STRUCT_TRAITS_MEMBER(texture_usage) | 200 IPC_STRUCT_TRAITS_MEMBER(texture_usage) |
200 IPC_STRUCT_TRAITS_MEMBER(texture_storage) | 201 IPC_STRUCT_TRAITS_MEMBER(texture_storage) |
201 IPC_STRUCT_TRAITS_MEMBER(discard_framebuffer) | 202 IPC_STRUCT_TRAITS_MEMBER(discard_framebuffer) |
202 IPC_STRUCT_TRAITS_MEMBER(sync_query) | 203 IPC_STRUCT_TRAITS_MEMBER(sync_query) |
203 IPC_STRUCT_TRAITS_MEMBER(map_image) | 204 IPC_STRUCT_TRAITS_MEMBER(map_image) |
204 IPC_STRUCT_TRAITS_END() | 205 IPC_STRUCT_TRAITS_END() |
205 | 206 |
206 IPC_STRUCT_TRAITS_BEGIN(content::GPUVideoMemoryUsageStats::ProcessStats) | 207 IPC_STRUCT_TRAITS_BEGIN(content::GPUVideoMemoryUsageStats::ProcessStats) |
(...skipping 550 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
757 int32 /* bitstream_buffer_id */, | 758 int32 /* bitstream_buffer_id */, |
758 uint32 /* payload_size */, | 759 uint32 /* payload_size */, |
759 bool /* key_frame */) | 760 bool /* key_frame */) |
760 | 761 |
761 // Report error condition. | 762 // Report error condition. |
762 IPC_MESSAGE_ROUTED1(AcceleratedVideoEncoderHostMsg_NotifyError, | 763 IPC_MESSAGE_ROUTED1(AcceleratedVideoEncoderHostMsg_NotifyError, |
763 media::VideoEncodeAccelerator::Error /* error */) | 764 media::VideoEncodeAccelerator::Error /* error */) |
764 | 765 |
765 // Send destroy request to the encoder. | 766 // Send destroy request to the encoder. |
766 IPC_MESSAGE_ROUTED0(AcceleratedVideoEncoderMsg_Destroy) | 767 IPC_MESSAGE_ROUTED0(AcceleratedVideoEncoderMsg_Destroy) |
OLD | NEW |