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

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

Issue 1018463002: Deprecate WinSAT support in Chromium. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix Created 5 years, 9 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
« no previous file with comments | « content/browser/resources/gpu/info_view.js ('k') | gpu/config/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 IPC_STRUCT_MEMBER(float, m32) 131 IPC_STRUCT_MEMBER(float, m32)
132 IPC_STRUCT_MEMBER(float, m33) 132 IPC_STRUCT_MEMBER(float, m33)
133 IPC_STRUCT_END() 133 IPC_STRUCT_END()
134 #endif 134 #endif
135 135
136 IPC_STRUCT_TRAITS_BEGIN(gpu::DxDiagNode) 136 IPC_STRUCT_TRAITS_BEGIN(gpu::DxDiagNode)
137 IPC_STRUCT_TRAITS_MEMBER(values) 137 IPC_STRUCT_TRAITS_MEMBER(values)
138 IPC_STRUCT_TRAITS_MEMBER(children) 138 IPC_STRUCT_TRAITS_MEMBER(children)
139 IPC_STRUCT_TRAITS_END() 139 IPC_STRUCT_TRAITS_END()
140 140
141 IPC_STRUCT_TRAITS_BEGIN(gpu::GpuPerformanceStats)
142 IPC_STRUCT_TRAITS_MEMBER(graphics)
143 IPC_STRUCT_TRAITS_MEMBER(gaming)
144 IPC_STRUCT_TRAITS_MEMBER(overall)
145 IPC_STRUCT_TRAITS_END()
146
147 IPC_STRUCT_TRAITS_BEGIN(gpu::GPUInfo::GPUDevice) 141 IPC_STRUCT_TRAITS_BEGIN(gpu::GPUInfo::GPUDevice)
148 IPC_STRUCT_TRAITS_MEMBER(vendor_id) 142 IPC_STRUCT_TRAITS_MEMBER(vendor_id)
149 IPC_STRUCT_TRAITS_MEMBER(device_id) 143 IPC_STRUCT_TRAITS_MEMBER(device_id)
150 IPC_STRUCT_TRAITS_MEMBER(active) 144 IPC_STRUCT_TRAITS_MEMBER(active)
151 IPC_STRUCT_TRAITS_MEMBER(vendor_string) 145 IPC_STRUCT_TRAITS_MEMBER(vendor_string)
152 IPC_STRUCT_TRAITS_MEMBER(device_string) 146 IPC_STRUCT_TRAITS_MEMBER(device_string)
153 IPC_STRUCT_TRAITS_END() 147 IPC_STRUCT_TRAITS_END()
154 148
155 IPC_STRUCT_TRAITS_BEGIN(gpu::VideoEncodeAcceleratorSupportedProfile) 149 IPC_STRUCT_TRAITS_BEGIN(gpu::VideoEncodeAcceleratorSupportedProfile)
156 IPC_STRUCT_TRAITS_MEMBER(profile) 150 IPC_STRUCT_TRAITS_MEMBER(profile)
(...skipping 19 matching lines...) Expand all
176 IPC_STRUCT_TRAITS_MEMBER(machine_model_version) 170 IPC_STRUCT_TRAITS_MEMBER(machine_model_version)
177 IPC_STRUCT_TRAITS_MEMBER(gl_version) 171 IPC_STRUCT_TRAITS_MEMBER(gl_version)
178 IPC_STRUCT_TRAITS_MEMBER(gl_vendor) 172 IPC_STRUCT_TRAITS_MEMBER(gl_vendor)
179 IPC_STRUCT_TRAITS_MEMBER(gl_renderer) 173 IPC_STRUCT_TRAITS_MEMBER(gl_renderer)
180 IPC_STRUCT_TRAITS_MEMBER(gl_extensions) 174 IPC_STRUCT_TRAITS_MEMBER(gl_extensions)
181 IPC_STRUCT_TRAITS_MEMBER(gl_ws_vendor) 175 IPC_STRUCT_TRAITS_MEMBER(gl_ws_vendor)
182 IPC_STRUCT_TRAITS_MEMBER(gl_ws_version) 176 IPC_STRUCT_TRAITS_MEMBER(gl_ws_version)
183 IPC_STRUCT_TRAITS_MEMBER(gl_ws_extensions) 177 IPC_STRUCT_TRAITS_MEMBER(gl_ws_extensions)
184 IPC_STRUCT_TRAITS_MEMBER(gl_reset_notification_strategy) 178 IPC_STRUCT_TRAITS_MEMBER(gl_reset_notification_strategy)
185 IPC_STRUCT_TRAITS_MEMBER(can_lose_context) 179 IPC_STRUCT_TRAITS_MEMBER(can_lose_context)
186 IPC_STRUCT_TRAITS_MEMBER(performance_stats)
187 IPC_STRUCT_TRAITS_MEMBER(software_rendering) 180 IPC_STRUCT_TRAITS_MEMBER(software_rendering)
188 IPC_STRUCT_TRAITS_MEMBER(direct_rendering) 181 IPC_STRUCT_TRAITS_MEMBER(direct_rendering)
189 IPC_STRUCT_TRAITS_MEMBER(sandboxed) 182 IPC_STRUCT_TRAITS_MEMBER(sandboxed)
190 IPC_STRUCT_TRAITS_MEMBER(process_crash_count) 183 IPC_STRUCT_TRAITS_MEMBER(process_crash_count)
191 IPC_STRUCT_TRAITS_MEMBER(basic_info_state) 184 IPC_STRUCT_TRAITS_MEMBER(basic_info_state)
192 IPC_STRUCT_TRAITS_MEMBER(context_info_state) 185 IPC_STRUCT_TRAITS_MEMBER(context_info_state)
193 #if defined(OS_WIN) 186 #if defined(OS_WIN)
194 IPC_STRUCT_TRAITS_MEMBER(dx_diagnostics_info_state) 187 IPC_STRUCT_TRAITS_MEMBER(dx_diagnostics_info_state)
195 IPC_STRUCT_TRAITS_MEMBER(dx_diagnostics) 188 IPC_STRUCT_TRAITS_MEMBER(dx_diagnostics)
196 #endif 189 #endif
(...skipping 544 matching lines...) Expand 10 before | Expand all | Expand 10 after
741 int32 /* bitstream_buffer_id */, 734 int32 /* bitstream_buffer_id */,
742 uint32 /* payload_size */, 735 uint32 /* payload_size */,
743 bool /* key_frame */) 736 bool /* key_frame */)
744 737
745 // Report error condition. 738 // Report error condition.
746 IPC_MESSAGE_ROUTED1(AcceleratedVideoEncoderHostMsg_NotifyError, 739 IPC_MESSAGE_ROUTED1(AcceleratedVideoEncoderHostMsg_NotifyError,
747 media::VideoEncodeAccelerator::Error /* error */) 740 media::VideoEncodeAccelerator::Error /* error */)
748 741
749 // Send destroy request to the encoder. 742 // Send destroy request to the encoder.
750 IPC_MESSAGE_ROUTED0(AcceleratedVideoEncoderMsg_Destroy) 743 IPC_MESSAGE_ROUTED0(AcceleratedVideoEncoderMsg_Destroy)
OLDNEW
« no previous file with comments | « content/browser/resources/gpu/info_view.js ('k') | gpu/config/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698