| 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 <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <string> | 10 #include <string> |
| (...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 219 IPC_STRUCT_TRAITS_MEMBER(vendor_id) | 219 IPC_STRUCT_TRAITS_MEMBER(vendor_id) |
| 220 IPC_STRUCT_TRAITS_MEMBER(device_id) | 220 IPC_STRUCT_TRAITS_MEMBER(device_id) |
| 221 IPC_STRUCT_TRAITS_MEMBER(active) | 221 IPC_STRUCT_TRAITS_MEMBER(active) |
| 222 IPC_STRUCT_TRAITS_MEMBER(vendor_string) | 222 IPC_STRUCT_TRAITS_MEMBER(vendor_string) |
| 223 IPC_STRUCT_TRAITS_MEMBER(device_string) | 223 IPC_STRUCT_TRAITS_MEMBER(device_string) |
| 224 IPC_STRUCT_TRAITS_END() | 224 IPC_STRUCT_TRAITS_END() |
| 225 | 225 |
| 226 IPC_STRUCT_TRAITS_BEGIN(media::VideoDecodeAccelerator::Config) | 226 IPC_STRUCT_TRAITS_BEGIN(media::VideoDecodeAccelerator::Config) |
| 227 IPC_STRUCT_TRAITS_MEMBER(profile) | 227 IPC_STRUCT_TRAITS_MEMBER(profile) |
| 228 IPC_STRUCT_TRAITS_MEMBER(is_encrypted) | 228 IPC_STRUCT_TRAITS_MEMBER(is_encrypted) |
| 229 IPC_STRUCT_TRAITS_MEMBER(surface_id) |
| 229 IPC_STRUCT_TRAITS_END() | 230 IPC_STRUCT_TRAITS_END() |
| 230 | 231 |
| 231 IPC_STRUCT_TRAITS_BEGIN(gpu::VideoDecodeAcceleratorSupportedProfile) | 232 IPC_STRUCT_TRAITS_BEGIN(gpu::VideoDecodeAcceleratorSupportedProfile) |
| 232 IPC_STRUCT_TRAITS_MEMBER(profile) | 233 IPC_STRUCT_TRAITS_MEMBER(profile) |
| 233 IPC_STRUCT_TRAITS_MEMBER(max_resolution) | 234 IPC_STRUCT_TRAITS_MEMBER(max_resolution) |
| 234 IPC_STRUCT_TRAITS_MEMBER(min_resolution) | 235 IPC_STRUCT_TRAITS_MEMBER(min_resolution) |
| 235 IPC_STRUCT_TRAITS_END() | 236 IPC_STRUCT_TRAITS_END() |
| 236 | 237 |
| 237 IPC_STRUCT_TRAITS_BEGIN(gpu::VideoDecodeAcceleratorCapabilities) | 238 IPC_STRUCT_TRAITS_BEGIN(gpu::VideoDecodeAcceleratorCapabilities) |
| 238 IPC_STRUCT_TRAITS_MEMBER(supported_profiles) | 239 IPC_STRUCT_TRAITS_MEMBER(supported_profiles) |
| (...skipping 587 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 826 IPC_MESSAGE_ROUTED0(AcceleratedJpegDecoderMsg_Destroy) | 827 IPC_MESSAGE_ROUTED0(AcceleratedJpegDecoderMsg_Destroy) |
| 827 | 828 |
| 828 //------------------------------------------------------------------------------ | 829 //------------------------------------------------------------------------------ |
| 829 // Accelerated JPEG Decoder Host Messages | 830 // Accelerated JPEG Decoder Host Messages |
| 830 // These messages are sent from the GPU process to Browser process. | 831 // These messages are sent from the GPU process to Browser process. |
| 831 // | 832 // |
| 832 // Report decode status. | 833 // Report decode status. |
| 833 IPC_MESSAGE_ROUTED2(AcceleratedJpegDecoderHostMsg_DecodeAck, | 834 IPC_MESSAGE_ROUTED2(AcceleratedJpegDecoderHostMsg_DecodeAck, |
| 834 int32_t, /* bitstream_buffer_id */ | 835 int32_t, /* bitstream_buffer_id */ |
| 835 media::JpegDecodeAccelerator::Error /* error */) | 836 media::JpegDecodeAccelerator::Error /* error */) |
| OLD | NEW |