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 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
213 IPC_STRUCT_TRAITS_MEMBER(device_id) | 213 IPC_STRUCT_TRAITS_MEMBER(device_id) |
214 IPC_STRUCT_TRAITS_MEMBER(active) | 214 IPC_STRUCT_TRAITS_MEMBER(active) |
215 IPC_STRUCT_TRAITS_MEMBER(vendor_string) | 215 IPC_STRUCT_TRAITS_MEMBER(vendor_string) |
216 IPC_STRUCT_TRAITS_MEMBER(device_string) | 216 IPC_STRUCT_TRAITS_MEMBER(device_string) |
217 IPC_STRUCT_TRAITS_END() | 217 IPC_STRUCT_TRAITS_END() |
218 | 218 |
219 IPC_STRUCT_TRAITS_BEGIN(gpu::VideoDecodeAcceleratorSupportedProfile) | 219 IPC_STRUCT_TRAITS_BEGIN(gpu::VideoDecodeAcceleratorSupportedProfile) |
220 IPC_STRUCT_TRAITS_MEMBER(profile) | 220 IPC_STRUCT_TRAITS_MEMBER(profile) |
221 IPC_STRUCT_TRAITS_MEMBER(max_resolution) | 221 IPC_STRUCT_TRAITS_MEMBER(max_resolution) |
222 IPC_STRUCT_TRAITS_MEMBER(min_resolution) | 222 IPC_STRUCT_TRAITS_MEMBER(min_resolution) |
| 223 IPC_STRUCT_TRAITS_MEMBER(flags) |
223 IPC_STRUCT_TRAITS_END() | 224 IPC_STRUCT_TRAITS_END() |
224 | 225 |
225 IPC_STRUCT_TRAITS_BEGIN(gpu::VideoEncodeAcceleratorSupportedProfile) | 226 IPC_STRUCT_TRAITS_BEGIN(gpu::VideoEncodeAcceleratorSupportedProfile) |
226 IPC_STRUCT_TRAITS_MEMBER(profile) | 227 IPC_STRUCT_TRAITS_MEMBER(profile) |
227 IPC_STRUCT_TRAITS_MEMBER(max_resolution) | 228 IPC_STRUCT_TRAITS_MEMBER(max_resolution) |
228 IPC_STRUCT_TRAITS_MEMBER(max_framerate_numerator) | 229 IPC_STRUCT_TRAITS_MEMBER(max_framerate_numerator) |
229 IPC_STRUCT_TRAITS_MEMBER(max_framerate_denominator) | 230 IPC_STRUCT_TRAITS_MEMBER(max_framerate_denominator) |
230 IPC_STRUCT_TRAITS_END() | 231 IPC_STRUCT_TRAITS_END() |
231 | 232 |
232 IPC_STRUCT_TRAITS_BEGIN(gpu::GPUInfo) | 233 IPC_STRUCT_TRAITS_BEGIN(gpu::GPUInfo) |
(...skipping 594 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
827 IPC_MESSAGE_ROUTED0(AcceleratedJpegDecoderMsg_Destroy) | 828 IPC_MESSAGE_ROUTED0(AcceleratedJpegDecoderMsg_Destroy) |
828 | 829 |
829 //------------------------------------------------------------------------------ | 830 //------------------------------------------------------------------------------ |
830 // Accelerated JPEG Decoder Host Messages | 831 // Accelerated JPEG Decoder Host Messages |
831 // These messages are sent from the GPU process to Browser process. | 832 // These messages are sent from the GPU process to Browser process. |
832 // | 833 // |
833 // Report decode status. | 834 // Report decode status. |
834 IPC_MESSAGE_ROUTED2(AcceleratedJpegDecoderHostMsg_DecodeAck, | 835 IPC_MESSAGE_ROUTED2(AcceleratedJpegDecoderHostMsg_DecodeAck, |
835 int32, /* bitstream_buffer_id */ | 836 int32, /* bitstream_buffer_id */ |
836 media::JpegDecodeAccelerator::Error /* error */) | 837 media::JpegDecodeAccelerator::Error /* error */) |
OLD | NEW |