| 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 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 IPC_STRUCT_TRAITS_MEMBER(post_sub_buffer) | 190 IPC_STRUCT_TRAITS_MEMBER(post_sub_buffer) |
| 191 IPC_STRUCT_TRAITS_MEMBER(fast_npot_mo8_textures) | 191 IPC_STRUCT_TRAITS_MEMBER(fast_npot_mo8_textures) |
| 192 IPC_STRUCT_TRAITS_MEMBER(egl_image_external) | 192 IPC_STRUCT_TRAITS_MEMBER(egl_image_external) |
| 193 IPC_STRUCT_TRAITS_MEMBER(texture_format_bgra8888) | 193 IPC_STRUCT_TRAITS_MEMBER(texture_format_bgra8888) |
| 194 IPC_STRUCT_TRAITS_MEMBER(texture_format_etc1) | 194 IPC_STRUCT_TRAITS_MEMBER(texture_format_etc1) |
| 195 IPC_STRUCT_TRAITS_MEMBER(texture_rectangle) | 195 IPC_STRUCT_TRAITS_MEMBER(texture_rectangle) |
| 196 IPC_STRUCT_TRAITS_MEMBER(iosurface) | 196 IPC_STRUCT_TRAITS_MEMBER(iosurface) |
| 197 IPC_STRUCT_TRAITS_MEMBER(texture_usage) | 197 IPC_STRUCT_TRAITS_MEMBER(texture_usage) |
| 198 IPC_STRUCT_TRAITS_MEMBER(texture_storage) | 198 IPC_STRUCT_TRAITS_MEMBER(texture_storage) |
| 199 IPC_STRUCT_TRAITS_MEMBER(discard_framebuffer) | 199 IPC_STRUCT_TRAITS_MEMBER(discard_framebuffer) |
| 200 IPC_STRUCT_TRAITS_MEMBER(sync_query) |
| 200 IPC_STRUCT_TRAITS_MEMBER(map_image) | 201 IPC_STRUCT_TRAITS_MEMBER(map_image) |
| 201 IPC_STRUCT_TRAITS_END() | 202 IPC_STRUCT_TRAITS_END() |
| 202 | 203 |
| 203 IPC_STRUCT_TRAITS_BEGIN(content::GPUVideoMemoryUsageStats::ProcessStats) | 204 IPC_STRUCT_TRAITS_BEGIN(content::GPUVideoMemoryUsageStats::ProcessStats) |
| 204 IPC_STRUCT_TRAITS_MEMBER(video_memory) | 205 IPC_STRUCT_TRAITS_MEMBER(video_memory) |
| 205 IPC_STRUCT_TRAITS_MEMBER(has_duplicates) | 206 IPC_STRUCT_TRAITS_MEMBER(has_duplicates) |
| 206 IPC_STRUCT_TRAITS_END() | 207 IPC_STRUCT_TRAITS_END() |
| 207 | 208 |
| 208 IPC_STRUCT_TRAITS_BEGIN(content::GPUVideoMemoryUsageStats) | 209 IPC_STRUCT_TRAITS_BEGIN(content::GPUVideoMemoryUsageStats) |
| 209 IPC_STRUCT_TRAITS_MEMBER(process_map) | 210 IPC_STRUCT_TRAITS_MEMBER(process_map) |
| (...skipping 569 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 779 int32 /* bitstream_buffer_id */, | 780 int32 /* bitstream_buffer_id */, |
| 780 uint32 /* payload_size */, | 781 uint32 /* payload_size */, |
| 781 bool /* key_frame */) | 782 bool /* key_frame */) |
| 782 | 783 |
| 783 // Report error condition. | 784 // Report error condition. |
| 784 IPC_MESSAGE_ROUTED1(AcceleratedVideoEncoderHostMsg_NotifyError, | 785 IPC_MESSAGE_ROUTED1(AcceleratedVideoEncoderHostMsg_NotifyError, |
| 785 media::VideoEncodeAccelerator::Error /* error */) | 786 media::VideoEncodeAccelerator::Error /* error */) |
| 786 | 787 |
| 787 // Send destroy request to the encoder. | 788 // Send destroy request to the encoder. |
| 788 IPC_MESSAGE_ROUTED0(AcceleratedVideoEncoderMsg_Destroy) | 789 IPC_MESSAGE_ROUTED0(AcceleratedVideoEncoderMsg_Destroy) |
| OLD | NEW |