| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 "build/build_config.h" | 8 #include "build/build_config.h" |
| 9 #include "content/common/content_export.h" | 9 #include "content/common/content_export.h" |
| 10 #include "content/common/establish_channel_params.h" | 10 #include "content/common/establish_channel_params.h" |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 IPC_STRUCT_TRAITS_MEMBER(ui_prioritize_in_gpu_process) | 67 IPC_STRUCT_TRAITS_MEMBER(ui_prioritize_in_gpu_process) |
| 68 IPC_STRUCT_TRAITS_MEMBER(disable_accelerated_video_decode) | 68 IPC_STRUCT_TRAITS_MEMBER(disable_accelerated_video_decode) |
| 69 #if defined(OS_CHROMEOS) | 69 #if defined(OS_CHROMEOS) |
| 70 IPC_STRUCT_TRAITS_MEMBER(disable_vaapi_accelerated_video_encode) | 70 IPC_STRUCT_TRAITS_MEMBER(disable_vaapi_accelerated_video_encode) |
| 71 #endif | 71 #endif |
| 72 #if defined(ENABLE_WEBRTC) | 72 #if defined(ENABLE_WEBRTC) |
| 73 IPC_STRUCT_TRAITS_MEMBER(disable_web_rtc_hw_encoding) | 73 IPC_STRUCT_TRAITS_MEMBER(disable_web_rtc_hw_encoding) |
| 74 #endif | 74 #endif |
| 75 #if defined(OS_WIN) | 75 #if defined(OS_WIN) |
| 76 IPC_STRUCT_TRAITS_MEMBER(enable_accelerated_vpx_decode) | 76 IPC_STRUCT_TRAITS_MEMBER(enable_accelerated_vpx_decode) |
| 77 IPC_STRUCT_TRAITS_MEMBER(enable_low_latency_dxva) |
| 77 IPC_STRUCT_TRAITS_MEMBER(enable_zero_copy_dxgi_video) | 78 IPC_STRUCT_TRAITS_MEMBER(enable_zero_copy_dxgi_video) |
| 78 IPC_STRUCT_TRAITS_MEMBER(enable_nv12_dxgi_video) | 79 IPC_STRUCT_TRAITS_MEMBER(enable_nv12_dxgi_video) |
| 79 #endif | 80 #endif |
| 80 IPC_STRUCT_TRAITS_MEMBER(compile_shader_always_succeeds) | 81 IPC_STRUCT_TRAITS_MEMBER(compile_shader_always_succeeds) |
| 81 IPC_STRUCT_TRAITS_MEMBER(disable_gl_error_limit) | 82 IPC_STRUCT_TRAITS_MEMBER(disable_gl_error_limit) |
| 82 IPC_STRUCT_TRAITS_MEMBER(disable_glsl_translator) | 83 IPC_STRUCT_TRAITS_MEMBER(disable_glsl_translator) |
| 83 IPC_STRUCT_TRAITS_MEMBER(disable_gpu_driver_bug_workarounds) | 84 IPC_STRUCT_TRAITS_MEMBER(disable_gpu_driver_bug_workarounds) |
| 84 IPC_STRUCT_TRAITS_MEMBER(disable_shader_name_hashing) | 85 IPC_STRUCT_TRAITS_MEMBER(disable_shader_name_hashing) |
| 85 IPC_STRUCT_TRAITS_MEMBER(enable_gpu_command_logging) | 86 IPC_STRUCT_TRAITS_MEMBER(enable_gpu_command_logging) |
| 86 IPC_STRUCT_TRAITS_MEMBER(enable_gpu_debugging) | 87 IPC_STRUCT_TRAITS_MEMBER(enable_gpu_debugging) |
| (...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 224 IPC_MESSAGE_CONTROL1(GpuHostMsg_DidDestroyOffscreenContext, GURL /* url */) | 225 IPC_MESSAGE_CONTROL1(GpuHostMsg_DidDestroyOffscreenContext, GURL /* url */) |
| 225 | 226 |
| 226 // Message from GPU to add a GPU log message to the about:gpu page. | 227 // Message from GPU to add a GPU log message to the about:gpu page. |
| 227 IPC_MESSAGE_CONTROL3(GpuHostMsg_OnLogMessage, | 228 IPC_MESSAGE_CONTROL3(GpuHostMsg_OnLogMessage, |
| 228 int /*severity*/, | 229 int /*severity*/, |
| 229 std::string /* header */, | 230 std::string /* header */, |
| 230 std::string /* message */) | 231 std::string /* message */) |
| 231 | 232 |
| 232 // Sent by the GPU process to indicate that a fields trial has been activated. | 233 // Sent by the GPU process to indicate that a fields trial has been activated. |
| 233 IPC_MESSAGE_CONTROL1(GpuHostMsg_FieldTrialActivated, std::string /* name */) | 234 IPC_MESSAGE_CONTROL1(GpuHostMsg_FieldTrialActivated, std::string /* name */) |
| OLD | NEW |