| 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 568 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 797 | 796 |
| 798 // Notify the renderer that an output buffer has been filled with encoded data. | 797 // Notify the renderer that an output buffer has been filled with encoded data. |
| 799 IPC_MESSAGE_ROUTED3(AcceleratedVideoEncoderHostMsg_BitstreamBufferReady, | 798 IPC_MESSAGE_ROUTED3(AcceleratedVideoEncoderHostMsg_BitstreamBufferReady, |
| 800 int32 /* bitstream_buffer_id */, | 799 int32 /* bitstream_buffer_id */, |
| 801 uint32 /* payload_size */, | 800 uint32 /* payload_size */, |
| 802 bool /* key_frame */) | 801 bool /* key_frame */) |
| 803 | 802 |
| 804 // Report error condition. | 803 // Report error condition. |
| 805 IPC_MESSAGE_ROUTED1(AcceleratedVideoEncoderHostMsg_NotifyError, | 804 IPC_MESSAGE_ROUTED1(AcceleratedVideoEncoderHostMsg_NotifyError, |
| 806 media::VideoEncodeAccelerator::Error /* error */) | 805 media::VideoEncodeAccelerator::Error /* error */) |
| OLD | NEW |