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

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

Issue 9959085: Make it possible to blacklist gpu's based on the Windows experience index. (Closed) Base URL: svn://svn.chromium.org/chrome/branches/1025/src/
Patch Set: Created 8 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « content/browser/gpu/gpu_performance_stats_win.cc ('k') | content/content_browser.gypi » ('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 <vector> 8 #include <vector>
9 #include <string> 9 #include <string>
10 10
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 IPC_STRUCT_BEGIN(GPUCommandBufferConsoleMessage) 81 IPC_STRUCT_BEGIN(GPUCommandBufferConsoleMessage)
82 IPC_STRUCT_MEMBER(int32, id) 82 IPC_STRUCT_MEMBER(int32, id)
83 IPC_STRUCT_MEMBER(std::string, message) 83 IPC_STRUCT_MEMBER(std::string, message)
84 IPC_STRUCT_END() 84 IPC_STRUCT_END()
85 85
86 IPC_STRUCT_TRAITS_BEGIN(content::DxDiagNode) 86 IPC_STRUCT_TRAITS_BEGIN(content::DxDiagNode)
87 IPC_STRUCT_TRAITS_MEMBER(values) 87 IPC_STRUCT_TRAITS_MEMBER(values)
88 IPC_STRUCT_TRAITS_MEMBER(children) 88 IPC_STRUCT_TRAITS_MEMBER(children)
89 IPC_STRUCT_TRAITS_END() 89 IPC_STRUCT_TRAITS_END()
90 90
91 IPC_STRUCT_TRAITS_BEGIN(content::GpuPerformanceStats)
92 IPC_STRUCT_TRAITS_MEMBER(graphics)
93 IPC_STRUCT_TRAITS_MEMBER(gaming)
94 IPC_STRUCT_TRAITS_MEMBER(overall)
95 IPC_STRUCT_TRAITS_END()
96
91 IPC_STRUCT_TRAITS_BEGIN(content::GPUInfo) 97 IPC_STRUCT_TRAITS_BEGIN(content::GPUInfo)
92 IPC_STRUCT_TRAITS_MEMBER(finalized) 98 IPC_STRUCT_TRAITS_MEMBER(finalized)
93 IPC_STRUCT_TRAITS_MEMBER(initialization_time) 99 IPC_STRUCT_TRAITS_MEMBER(initialization_time)
94 IPC_STRUCT_TRAITS_MEMBER(optimus) 100 IPC_STRUCT_TRAITS_MEMBER(optimus)
95 IPC_STRUCT_TRAITS_MEMBER(vendor_id) 101 IPC_STRUCT_TRAITS_MEMBER(vendor_id)
96 IPC_STRUCT_TRAITS_MEMBER(device_id) 102 IPC_STRUCT_TRAITS_MEMBER(device_id)
97 IPC_STRUCT_TRAITS_MEMBER(driver_vendor) 103 IPC_STRUCT_TRAITS_MEMBER(driver_vendor)
98 IPC_STRUCT_TRAITS_MEMBER(driver_version) 104 IPC_STRUCT_TRAITS_MEMBER(driver_version)
99 IPC_STRUCT_TRAITS_MEMBER(driver_date) 105 IPC_STRUCT_TRAITS_MEMBER(driver_date)
100 IPC_STRUCT_TRAITS_MEMBER(pixel_shader_version) 106 IPC_STRUCT_TRAITS_MEMBER(pixel_shader_version)
101 IPC_STRUCT_TRAITS_MEMBER(vertex_shader_version) 107 IPC_STRUCT_TRAITS_MEMBER(vertex_shader_version)
102 IPC_STRUCT_TRAITS_MEMBER(gl_version) 108 IPC_STRUCT_TRAITS_MEMBER(gl_version)
103 IPC_STRUCT_TRAITS_MEMBER(gl_version_string) 109 IPC_STRUCT_TRAITS_MEMBER(gl_version_string)
104 IPC_STRUCT_TRAITS_MEMBER(gl_vendor) 110 IPC_STRUCT_TRAITS_MEMBER(gl_vendor)
105 IPC_STRUCT_TRAITS_MEMBER(gl_renderer) 111 IPC_STRUCT_TRAITS_MEMBER(gl_renderer)
106 IPC_STRUCT_TRAITS_MEMBER(gl_extensions) 112 IPC_STRUCT_TRAITS_MEMBER(gl_extensions)
107 IPC_STRUCT_TRAITS_MEMBER(can_lose_context) 113 IPC_STRUCT_TRAITS_MEMBER(can_lose_context)
114 IPC_STRUCT_TRAITS_MEMBER(performance_stats)
108 #if defined(OS_WIN) 115 #if defined(OS_WIN)
109 IPC_STRUCT_TRAITS_MEMBER(dx_diagnostics) 116 IPC_STRUCT_TRAITS_MEMBER(dx_diagnostics)
110 #endif 117 #endif
111 IPC_STRUCT_TRAITS_END() 118 IPC_STRUCT_TRAITS_END()
112 119
113 IPC_ENUM_TRAITS(content::CauseForGpuLaunch) 120 IPC_ENUM_TRAITS(content::CauseForGpuLaunch)
114 IPC_ENUM_TRAITS(gfx::GpuPreference) 121 IPC_ENUM_TRAITS(gfx::GpuPreference)
115 IPC_ENUM_TRAITS(gpu::error::ContextLostReason) 122 IPC_ENUM_TRAITS(gpu::error::ContextLostReason)
116 123
117 IPC_ENUM_TRAITS(media::VideoDecodeAccelerator::Profile) 124 IPC_ENUM_TRAITS(media::VideoDecodeAccelerator::Profile)
(...skipping 349 matching lines...) Expand 10 before | Expand all | Expand 10 after
467 474
468 // Confirm decoder has been flushed. 475 // Confirm decoder has been flushed.
469 IPC_MESSAGE_ROUTED0(AcceleratedVideoDecoderHostMsg_FlushDone) 476 IPC_MESSAGE_ROUTED0(AcceleratedVideoDecoderHostMsg_FlushDone)
470 477
471 // Confirm decoder has been reset. 478 // Confirm decoder has been reset.
472 IPC_MESSAGE_ROUTED0(AcceleratedVideoDecoderHostMsg_ResetDone) 479 IPC_MESSAGE_ROUTED0(AcceleratedVideoDecoderHostMsg_ResetDone)
473 480
474 // Video decoder has encountered an error. 481 // Video decoder has encountered an error.
475 IPC_MESSAGE_ROUTED1(AcceleratedVideoDecoderHostMsg_ErrorNotification, 482 IPC_MESSAGE_ROUTED1(AcceleratedVideoDecoderHostMsg_ErrorNotification,
476 uint32) /* Error ID */ 483 uint32) /* Error ID */
OLDNEW
« no previous file with comments | « content/browser/gpu/gpu_performance_stats_win.cc ('k') | content/content_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698