Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(802)

Side by Side Diff: content/common/gpu/gpu_messages.h

Issue 1451353002: Implement GpuArcVideoService for arc video accelerator (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addressed dcheng's comments Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 829 matching lines...) Expand 10 before | Expand all | Expand 10 after
840 IPC_MESSAGE_ROUTED0(AcceleratedJpegDecoderMsg_Destroy) 840 IPC_MESSAGE_ROUTED0(AcceleratedJpegDecoderMsg_Destroy)
841 841
842 //------------------------------------------------------------------------------ 842 //------------------------------------------------------------------------------
843 // Accelerated JPEG Decoder Host Messages 843 // Accelerated JPEG Decoder Host Messages
844 // These messages are sent from the GPU process to Browser process. 844 // These messages are sent from the GPU process to Browser process.
845 // 845 //
846 // Report decode status. 846 // Report decode status.
847 IPC_MESSAGE_ROUTED2(AcceleratedJpegDecoderHostMsg_DecodeAck, 847 IPC_MESSAGE_ROUTED2(AcceleratedJpegDecoderHostMsg_DecodeAck,
848 int32_t, /* bitstream_buffer_id */ 848 int32_t, /* bitstream_buffer_id */
849 media::JpegDecodeAccelerator::Error /* error */) 849 media::JpegDecodeAccelerator::Error /* error */)
850
851 #if defined(OS_CHROMEOS)
852 //------------------------------------------------------------------------------
853 // Arc Video Accelerator Messages
854 // These messages are sent from the Browser process to GPU process.
855
856 // Tells the GPU process to create a new channel for communication with
857 // ArcVideoAccelerator. The channel is returned using
858 // GpuHostMsg_ArcVideoAcceleratorChannelCreated message.
859 IPC_MESSAGE_CONTROL0(GpuMsg_CreateArcVideoAcceleratorChannel)
860
861 // Tells the GPU process to shutdown arc video service and terminate all
862 // instances of ArcVideoAccelerator.
863 IPC_MESSAGE_CONTROL0(GpuMsg_ShutdownArcVideoService)
864
865 //------------------------------------------------------------------------------
866 // Arc Video Accelerator Host Messages
867 // These messages are sent from the GPU process to Browser process.
868
869 // Response from GPU to a GpuMsg_CreateArcVideoAcceleratorChannel message.
870 IPC_MESSAGE_CONTROL1(GpuHostMsg_ArcVideoAcceleratorChannelCreated,
871 IPC::ChannelHandle /* handle to channel */)
872 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698