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

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

Issue 1247093006: Allow WebGL on Android if the GPU has it's own process (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed blacklist description Created 5 years, 5 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 <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
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)
213 IPC_STRUCT_TRAITS_MEMBER(basic_info_state) 214 IPC_STRUCT_TRAITS_MEMBER(basic_info_state)
214 IPC_STRUCT_TRAITS_MEMBER(context_info_state) 215 IPC_STRUCT_TRAITS_MEMBER(context_info_state)
215 #if defined(OS_WIN) 216 #if defined(OS_WIN)
216 IPC_STRUCT_TRAITS_MEMBER(dx_diagnostics_info_state) 217 IPC_STRUCT_TRAITS_MEMBER(dx_diagnostics_info_state)
217 IPC_STRUCT_TRAITS_MEMBER(dx_diagnostics) 218 IPC_STRUCT_TRAITS_MEMBER(dx_diagnostics)
218 #endif 219 #endif
219 IPC_STRUCT_TRAITS_MEMBER(video_decode_accelerator_supported_profiles) 220 IPC_STRUCT_TRAITS_MEMBER(video_decode_accelerator_supported_profiles)
220 IPC_STRUCT_TRAITS_MEMBER(video_encode_accelerator_supported_profiles) 221 IPC_STRUCT_TRAITS_MEMBER(video_encode_accelerator_supported_profiles)
221 IPC_STRUCT_TRAITS_END() 222 IPC_STRUCT_TRAITS_END()
222 223
(...skipping 573 matching lines...) Expand 10 before | Expand all | Expand 10 after
796 IPC_MESSAGE_ROUTED0(AcceleratedJpegDecoderMsg_Destroy) 797 IPC_MESSAGE_ROUTED0(AcceleratedJpegDecoderMsg_Destroy)
797 798
798 //------------------------------------------------------------------------------ 799 //------------------------------------------------------------------------------
799 // Accelerated JPEG Decoder Host Messages 800 // Accelerated JPEG Decoder Host Messages
800 // These messages are sent from the GPU process to Browser process. 801 // These messages are sent from the GPU process to Browser process.
801 // 802 //
802 // Report decode status. 803 // Report decode status.
803 IPC_MESSAGE_ROUTED2(AcceleratedJpegDecoderHostMsg_DecodeAck, 804 IPC_MESSAGE_ROUTED2(AcceleratedJpegDecoderHostMsg_DecodeAck,
804 int32, /* bitstream_buffer_id */ 805 int32, /* bitstream_buffer_id */
805 media::JpegDecodeAccelerator::Error /* error */) 806 media::JpegDecodeAccelerator::Error /* error */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698