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

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

Issue 1463823002: Add DriverBugWorkaroundsInGpuProcessPage to gpu_process_test.py (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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 231 matching lines...) Expand 10 before | Expand all | Expand 10 after
242 IPC_STRUCT_TRAITS_MEMBER(gl_ws_vendor) 242 IPC_STRUCT_TRAITS_MEMBER(gl_ws_vendor)
243 IPC_STRUCT_TRAITS_MEMBER(gl_ws_version) 243 IPC_STRUCT_TRAITS_MEMBER(gl_ws_version)
244 IPC_STRUCT_TRAITS_MEMBER(gl_ws_extensions) 244 IPC_STRUCT_TRAITS_MEMBER(gl_ws_extensions)
245 IPC_STRUCT_TRAITS_MEMBER(gl_reset_notification_strategy) 245 IPC_STRUCT_TRAITS_MEMBER(gl_reset_notification_strategy)
246 IPC_STRUCT_TRAITS_MEMBER(can_lose_context) 246 IPC_STRUCT_TRAITS_MEMBER(can_lose_context)
247 IPC_STRUCT_TRAITS_MEMBER(software_rendering) 247 IPC_STRUCT_TRAITS_MEMBER(software_rendering)
248 IPC_STRUCT_TRAITS_MEMBER(direct_rendering) 248 IPC_STRUCT_TRAITS_MEMBER(direct_rendering)
249 IPC_STRUCT_TRAITS_MEMBER(sandboxed) 249 IPC_STRUCT_TRAITS_MEMBER(sandboxed)
250 IPC_STRUCT_TRAITS_MEMBER(process_crash_count) 250 IPC_STRUCT_TRAITS_MEMBER(process_crash_count)
251 IPC_STRUCT_TRAITS_MEMBER(in_process_gpu) 251 IPC_STRUCT_TRAITS_MEMBER(in_process_gpu)
252 IPC_STRUCT_TRAITS_MEMBER(driver_bugs_workarounds)
252 IPC_STRUCT_TRAITS_MEMBER(basic_info_state) 253 IPC_STRUCT_TRAITS_MEMBER(basic_info_state)
253 IPC_STRUCT_TRAITS_MEMBER(context_info_state) 254 IPC_STRUCT_TRAITS_MEMBER(context_info_state)
254 #if defined(OS_WIN) 255 #if defined(OS_WIN)
255 IPC_STRUCT_TRAITS_MEMBER(dx_diagnostics_info_state) 256 IPC_STRUCT_TRAITS_MEMBER(dx_diagnostics_info_state)
256 IPC_STRUCT_TRAITS_MEMBER(dx_diagnostics) 257 IPC_STRUCT_TRAITS_MEMBER(dx_diagnostics)
257 #endif 258 #endif
258 IPC_STRUCT_TRAITS_MEMBER(video_decode_accelerator_supported_profiles) 259 IPC_STRUCT_TRAITS_MEMBER(video_decode_accelerator_supported_profiles)
259 IPC_STRUCT_TRAITS_MEMBER(video_encode_accelerator_supported_profiles) 260 IPC_STRUCT_TRAITS_MEMBER(video_encode_accelerator_supported_profiles)
260 IPC_STRUCT_TRAITS_MEMBER(jpeg_decode_accelerator_supported) 261 IPC_STRUCT_TRAITS_MEMBER(jpeg_decode_accelerator_supported)
261 IPC_STRUCT_TRAITS_END() 262 IPC_STRUCT_TRAITS_END()
(...skipping 552 matching lines...) Expand 10 before | Expand all | Expand 10 after
814 IPC_MESSAGE_ROUTED0(AcceleratedJpegDecoderMsg_Destroy) 815 IPC_MESSAGE_ROUTED0(AcceleratedJpegDecoderMsg_Destroy)
815 816
816 //------------------------------------------------------------------------------ 817 //------------------------------------------------------------------------------
817 // Accelerated JPEG Decoder Host Messages 818 // Accelerated JPEG Decoder Host Messages
818 // These messages are sent from the GPU process to Browser process. 819 // These messages are sent from the GPU process to Browser process.
819 // 820 //
820 // Report decode status. 821 // Report decode status.
821 IPC_MESSAGE_ROUTED2(AcceleratedJpegDecoderHostMsg_DecodeAck, 822 IPC_MESSAGE_ROUTED2(AcceleratedJpegDecoderHostMsg_DecodeAck,
822 int32, /* bitstream_buffer_id */ 823 int32, /* bitstream_buffer_id */
823 media::JpegDecodeAccelerator::Error /* error */) 824 media::JpegDecodeAccelerator::Error /* error */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698