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 IPC_STRUCT_TRAITS_MEMBER(post_sub_buffer) | 187 IPC_STRUCT_TRAITS_MEMBER(post_sub_buffer) |
188 IPC_STRUCT_TRAITS_MEMBER(fast_npot_mo8_textures) | 188 IPC_STRUCT_TRAITS_MEMBER(fast_npot_mo8_textures) |
189 IPC_STRUCT_TRAITS_MEMBER(egl_image_external) | 189 IPC_STRUCT_TRAITS_MEMBER(egl_image_external) |
190 IPC_STRUCT_TRAITS_MEMBER(texture_format_bgra8888) | 190 IPC_STRUCT_TRAITS_MEMBER(texture_format_bgra8888) |
191 IPC_STRUCT_TRAITS_MEMBER(texture_format_etc1) | 191 IPC_STRUCT_TRAITS_MEMBER(texture_format_etc1) |
192 IPC_STRUCT_TRAITS_MEMBER(texture_rectangle) | 192 IPC_STRUCT_TRAITS_MEMBER(texture_rectangle) |
193 IPC_STRUCT_TRAITS_MEMBER(iosurface) | 193 IPC_STRUCT_TRAITS_MEMBER(iosurface) |
194 IPC_STRUCT_TRAITS_MEMBER(texture_usage) | 194 IPC_STRUCT_TRAITS_MEMBER(texture_usage) |
195 IPC_STRUCT_TRAITS_MEMBER(texture_storage) | 195 IPC_STRUCT_TRAITS_MEMBER(texture_storage) |
196 IPC_STRUCT_TRAITS_MEMBER(discard_framebuffer) | 196 IPC_STRUCT_TRAITS_MEMBER(discard_framebuffer) |
197 IPC_STRUCT_TRAITS_MEMBER(map_image) | |
198 IPC_STRUCT_TRAITS_END() | 197 IPC_STRUCT_TRAITS_END() |
199 | 198 |
200 IPC_STRUCT_TRAITS_BEGIN(content::GPUVideoMemoryUsageStats::ProcessStats) | 199 IPC_STRUCT_TRAITS_BEGIN(content::GPUVideoMemoryUsageStats::ProcessStats) |
201 IPC_STRUCT_TRAITS_MEMBER(video_memory) | 200 IPC_STRUCT_TRAITS_MEMBER(video_memory) |
202 IPC_STRUCT_TRAITS_MEMBER(has_duplicates) | 201 IPC_STRUCT_TRAITS_MEMBER(has_duplicates) |
203 IPC_STRUCT_TRAITS_END() | 202 IPC_STRUCT_TRAITS_END() |
204 | 203 |
205 IPC_STRUCT_TRAITS_BEGIN(content::GPUVideoMemoryUsageStats) | 204 IPC_STRUCT_TRAITS_BEGIN(content::GPUVideoMemoryUsageStats) |
206 IPC_STRUCT_TRAITS_MEMBER(process_map) | 205 IPC_STRUCT_TRAITS_MEMBER(process_map) |
207 IPC_STRUCT_TRAITS_MEMBER(bytes_allocated) | 206 IPC_STRUCT_TRAITS_MEMBER(bytes_allocated) |
(...skipping 563 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
771 | 770 |
772 // Notify the renderer that an output buffer has been filled with encoded data. | 771 // Notify the renderer that an output buffer has been filled with encoded data. |
773 IPC_MESSAGE_ROUTED3(AcceleratedVideoEncoderHostMsg_BitstreamBufferReady, | 772 IPC_MESSAGE_ROUTED3(AcceleratedVideoEncoderHostMsg_BitstreamBufferReady, |
774 int32 /* bitstream_buffer_id */, | 773 int32 /* bitstream_buffer_id */, |
775 uint32 /* payload_size */, | 774 uint32 /* payload_size */, |
776 bool /* key_frame */) | 775 bool /* key_frame */) |
777 | 776 |
778 // Report error condition. | 777 // Report error condition. |
779 IPC_MESSAGE_ROUTED1(AcceleratedVideoEncoderHostMsg_NotifyError, | 778 IPC_MESSAGE_ROUTED1(AcceleratedVideoEncoderHostMsg_NotifyError, |
780 media::VideoEncodeAccelerator::Error /* error */) | 779 media::VideoEncodeAccelerator::Error /* error */) |
OLD | NEW |