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