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 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
208 IPC_STRUCT_TRAITS_MEMBER(bytes_required) | 208 IPC_STRUCT_TRAITS_MEMBER(bytes_required) |
209 IPC_STRUCT_TRAITS_MEMBER(bytes_nice_to_have) | 209 IPC_STRUCT_TRAITS_MEMBER(bytes_nice_to_have) |
210 IPC_STRUCT_TRAITS_MEMBER(bytes_allocated) | 210 IPC_STRUCT_TRAITS_MEMBER(bytes_allocated) |
211 IPC_STRUCT_TRAITS_MEMBER(backbuffer_requested) | 211 IPC_STRUCT_TRAITS_MEMBER(backbuffer_requested) |
212 IPC_STRUCT_TRAITS_END() | 212 IPC_STRUCT_TRAITS_END() |
213 | 213 |
214 IPC_ENUM_TRAITS(gfx::SurfaceType) | 214 IPC_ENUM_TRAITS(gfx::SurfaceType) |
215 IPC_STRUCT_TRAITS_BEGIN(gfx::GLSurfaceHandle) | 215 IPC_STRUCT_TRAITS_BEGIN(gfx::GLSurfaceHandle) |
216 IPC_STRUCT_TRAITS_MEMBER(handle) | 216 IPC_STRUCT_TRAITS_MEMBER(handle) |
217 IPC_STRUCT_TRAITS_MEMBER(transport_type) | 217 IPC_STRUCT_TRAITS_MEMBER(transport_type) |
218 IPC_STRUCT_TRAITS_MEMBER(parent_gpu_process_id) | |
219 IPC_STRUCT_TRAITS_MEMBER(parent_client_id) | 218 IPC_STRUCT_TRAITS_MEMBER(parent_client_id) |
220 IPC_STRUCT_TRAITS_END() | 219 IPC_STRUCT_TRAITS_END() |
221 | 220 |
222 IPC_ENUM_TRAITS(content::CauseForGpuLaunch) | 221 IPC_ENUM_TRAITS(content::CauseForGpuLaunch) |
223 IPC_ENUM_TRAITS(gfx::GpuPreference) | 222 IPC_ENUM_TRAITS(gfx::GpuPreference) |
224 IPC_ENUM_TRAITS(gpu::error::ContextLostReason) | 223 IPC_ENUM_TRAITS(gpu::error::ContextLostReason) |
225 | 224 |
226 IPC_ENUM_TRAITS(media::VideoCodecProfile) | 225 IPC_ENUM_TRAITS(media::VideoCodecProfile) |
227 | 226 |
228 IPC_STRUCT_TRAITS_BEGIN(content::GpuRenderingStats) | 227 IPC_STRUCT_TRAITS_BEGIN(content::GpuRenderingStats) |
(...skipping 571 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
800 | 799 |
801 // Notify the renderer that an output buffer has been filled with encoded data. | 800 // Notify the renderer that an output buffer has been filled with encoded data. |
802 IPC_MESSAGE_ROUTED3(AcceleratedVideoEncoderHostMsg_BitstreamBufferReady, | 801 IPC_MESSAGE_ROUTED3(AcceleratedVideoEncoderHostMsg_BitstreamBufferReady, |
803 int32 /* bitstream_buffer_id */, | 802 int32 /* bitstream_buffer_id */, |
804 uint32 /* payload_size */, | 803 uint32 /* payload_size */, |
805 bool /* key_frame */) | 804 bool /* key_frame */) |
806 | 805 |
807 // Report error condition. | 806 // Report error condition. |
808 IPC_MESSAGE_ROUTED1(AcceleratedVideoEncoderHostMsg_NotifyError, | 807 IPC_MESSAGE_ROUTED1(AcceleratedVideoEncoderHostMsg_NotifyError, |
809 media::VideoEncodeAccelerator::Error /* error */) | 808 media::VideoEncodeAccelerator::Error /* error */) |
OLD | NEW |