| 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 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 203 IPC_STRUCT_TRAITS_MEMBER(gl_extensions) | 203 IPC_STRUCT_TRAITS_MEMBER(gl_extensions) |
| 204 IPC_STRUCT_TRAITS_MEMBER(gl_ws_vendor) | 204 IPC_STRUCT_TRAITS_MEMBER(gl_ws_vendor) |
| 205 IPC_STRUCT_TRAITS_MEMBER(gl_ws_version) | 205 IPC_STRUCT_TRAITS_MEMBER(gl_ws_version) |
| 206 IPC_STRUCT_TRAITS_MEMBER(gl_ws_extensions) | 206 IPC_STRUCT_TRAITS_MEMBER(gl_ws_extensions) |
| 207 IPC_STRUCT_TRAITS_MEMBER(gl_reset_notification_strategy) | 207 IPC_STRUCT_TRAITS_MEMBER(gl_reset_notification_strategy) |
| 208 IPC_STRUCT_TRAITS_MEMBER(can_lose_context) | 208 IPC_STRUCT_TRAITS_MEMBER(can_lose_context) |
| 209 IPC_STRUCT_TRAITS_MEMBER(software_rendering) | 209 IPC_STRUCT_TRAITS_MEMBER(software_rendering) |
| 210 IPC_STRUCT_TRAITS_MEMBER(direct_rendering) | 210 IPC_STRUCT_TRAITS_MEMBER(direct_rendering) |
| 211 IPC_STRUCT_TRAITS_MEMBER(sandboxed) | 211 IPC_STRUCT_TRAITS_MEMBER(sandboxed) |
| 212 IPC_STRUCT_TRAITS_MEMBER(process_crash_count) | 212 IPC_STRUCT_TRAITS_MEMBER(process_crash_count) |
| 213 IPC_STRUCT_TRAITS_MEMBER(in_process_gpu) | |
| 214 IPC_STRUCT_TRAITS_MEMBER(basic_info_state) | 213 IPC_STRUCT_TRAITS_MEMBER(basic_info_state) |
| 215 IPC_STRUCT_TRAITS_MEMBER(context_info_state) | 214 IPC_STRUCT_TRAITS_MEMBER(context_info_state) |
| 216 #if defined(OS_WIN) | 215 #if defined(OS_WIN) |
| 217 IPC_STRUCT_TRAITS_MEMBER(dx_diagnostics_info_state) | 216 IPC_STRUCT_TRAITS_MEMBER(dx_diagnostics_info_state) |
| 218 IPC_STRUCT_TRAITS_MEMBER(dx_diagnostics) | 217 IPC_STRUCT_TRAITS_MEMBER(dx_diagnostics) |
| 219 #endif | 218 #endif |
| 220 IPC_STRUCT_TRAITS_MEMBER(video_decode_accelerator_supported_profiles) | 219 IPC_STRUCT_TRAITS_MEMBER(video_decode_accelerator_supported_profiles) |
| 221 IPC_STRUCT_TRAITS_MEMBER(video_encode_accelerator_supported_profiles) | 220 IPC_STRUCT_TRAITS_MEMBER(video_encode_accelerator_supported_profiles) |
| 222 IPC_STRUCT_TRAITS_END() | 221 IPC_STRUCT_TRAITS_END() |
| 223 | 222 |
| (...skipping 573 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 797 IPC_MESSAGE_ROUTED0(AcceleratedJpegDecoderMsg_Destroy) | 796 IPC_MESSAGE_ROUTED0(AcceleratedJpegDecoderMsg_Destroy) |
| 798 | 797 |
| 799 //------------------------------------------------------------------------------ | 798 //------------------------------------------------------------------------------ |
| 800 // Accelerated JPEG Decoder Host Messages | 799 // Accelerated JPEG Decoder Host Messages |
| 801 // These messages are sent from the GPU process to Browser process. | 800 // These messages are sent from the GPU process to Browser process. |
| 802 // | 801 // |
| 803 // Report decode status. | 802 // Report decode status. |
| 804 IPC_MESSAGE_ROUTED2(AcceleratedJpegDecoderHostMsg_DecodeAck, | 803 IPC_MESSAGE_ROUTED2(AcceleratedJpegDecoderHostMsg_DecodeAck, |
| 805 int32, /* bitstream_buffer_id */ | 804 int32, /* bitstream_buffer_id */ |
| 806 media::JpegDecodeAccelerator::Error /* error */) | 805 media::JpegDecodeAccelerator::Error /* error */) |
| OLD | NEW |