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 824 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
835 IPC_MESSAGE_ROUTED0(AcceleratedJpegDecoderMsg_Destroy) | 835 IPC_MESSAGE_ROUTED0(AcceleratedJpegDecoderMsg_Destroy) |
836 | 836 |
837 //------------------------------------------------------------------------------ | 837 //------------------------------------------------------------------------------ |
838 // Accelerated JPEG Decoder Host Messages | 838 // Accelerated JPEG Decoder Host Messages |
839 // These messages are sent from the GPU process to Browser process. | 839 // These messages are sent from the GPU process to Browser process. |
840 // | 840 // |
841 // Report decode status. | 841 // Report decode status. |
842 IPC_MESSAGE_ROUTED2(AcceleratedJpegDecoderHostMsg_DecodeAck, | 842 IPC_MESSAGE_ROUTED2(AcceleratedJpegDecoderHostMsg_DecodeAck, |
843 int32_t, /* bitstream_buffer_id */ | 843 int32_t, /* bitstream_buffer_id */ |
844 media::JpegDecodeAccelerator::Error /* error */) | 844 media::JpegDecodeAccelerator::Error /* error */) |
| 845 |
| 846 IPC_MESSAGE_CONTROL0(GpuMsg_CreateArcVideoAcceleratorChannel) |
| 847 IPC_MESSAGE_CONTROL0(GpuMsg_ShutdownArcVideoService) |
| 848 IPC_MESSAGE_CONTROL1(GpuHostMsg_ArcVideoAcceleratorChannelCreated, |
| 849 IPC::ChannelHandle /* handle to channel */) |
OLD | NEW |