| 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 815 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 826 IPC_MESSAGE_ROUTED0(AcceleratedJpegDecoderMsg_Destroy) | 826 IPC_MESSAGE_ROUTED0(AcceleratedJpegDecoderMsg_Destroy) |
| 827 | 827 |
| 828 //------------------------------------------------------------------------------ | 828 //------------------------------------------------------------------------------ |
| 829 // Accelerated JPEG Decoder Host Messages | 829 // Accelerated JPEG Decoder Host Messages |
| 830 // These messages are sent from the GPU process to Browser process. | 830 // These messages are sent from the GPU process to Browser process. |
| 831 // | 831 // |
| 832 // Report decode status. | 832 // Report decode status. |
| 833 IPC_MESSAGE_ROUTED2(AcceleratedJpegDecoderHostMsg_DecodeAck, | 833 IPC_MESSAGE_ROUTED2(AcceleratedJpegDecoderHostMsg_DecodeAck, |
| 834 int32_t, /* bitstream_buffer_id */ | 834 int32_t, /* bitstream_buffer_id */ |
| 835 media::JpegDecodeAccelerator::Error /* error */) | 835 media::JpegDecodeAccelerator::Error /* error */) |
| 836 | |
| 837 #if defined(OS_CHROMEOS) | |
| 838 //------------------------------------------------------------------------------ | |
| 839 // Arc Video Accelerator Messages | |
| 840 // These messages are sent from the Browser process to GPU process. | |
| 841 | |
| 842 // Tells the GPU process to create a new channel for communication with | |
| 843 // ArcVideoAccelerator. The channel is returned using | |
| 844 // GpuHostMsg_ArcVideoAcceleratorChannelCreated message. | |
| 845 IPC_MESSAGE_CONTROL0(GpuMsg_CreateArcVideoAcceleratorChannel) | |
| 846 | |
| 847 // Tells the GPU process to shutdown arc video service and terminate all | |
| 848 // instances of ArcVideoAccelerator. | |
| 849 IPC_MESSAGE_CONTROL0(GpuMsg_ShutdownArcVideoService) | |
| 850 | |
| 851 //------------------------------------------------------------------------------ | |
| 852 // Arc Video Accelerator Host Messages | |
| 853 // These messages are sent from the GPU process to Browser process. | |
| 854 | |
| 855 // Response from GPU to a GpuMsg_CreateArcVideoAcceleratorChannel message. | |
| 856 IPC_MESSAGE_CONTROL1(GpuHostMsg_ArcVideoAcceleratorChannelCreated, | |
| 857 IPC::ChannelHandle /* handle to channel */) | |
| 858 #endif | |
| OLD | NEW |