summaryrefslogtreecommitdiffstats
path: root/content/gpu/gpu_info_collector.h
diff options
context:
space:
mode:
authordpranke@chromium.org <dpranke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-30 00:28:14 +0000
committerdpranke@chromium.org <dpranke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-30 00:28:14 +0000
commit03ff5e59b44cc3ad7bfc80e01af2d8bf53dcc34b (patch)
tree4890392665cbbec1941db05fa7b1ed68d9b79c46 /content/gpu/gpu_info_collector.h
parent1347570839022dfc6b51ad0580352a7585b21562 (diff)
downloadchromium_src-03ff5e59b44cc3ad7bfc80e01af2d8bf53dcc34b.zip
chromium_src-03ff5e59b44cc3ad7bfc80e01af2d8bf53dcc34b.tar.gz
chromium_src-03ff5e59b44cc3ad7bfc80e01af2d8bf53dcc34b.tar.bz2
Here are more exports needed for content_unittests to link in the component build.
R=jam@chromium.org, darin@chromium.org BUG=90442 TEST= Review URL: http://codereview.chromium.org/8054037 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103394 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/gpu/gpu_info_collector.h')
-rw-r--r--content/gpu/gpu_info_collector.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/content/gpu/gpu_info_collector.h b/content/gpu/gpu_info_collector.h
index f911c9c..d2a42ef 100644
--- a/content/gpu/gpu_info_collector.h
+++ b/content/gpu/gpu_info_collector.h
@@ -8,6 +8,7 @@
#include "base/basictypes.h"
#include "build/build_config.h"
+#include "content/common/content_export.h"
#include "content/common/gpu/gpu_info.h"
struct IDirect3D9;
@@ -29,19 +30,20 @@ bool CollectPreliminaryGraphicsInfo(GPUInfo* gpu_info);
// The selection between the two methods is done in the cc file.
// A D3D argument is passed in for testing purposes
-bool CollectGraphicsInfoD3D(IDirect3D9* d3d, GPUInfo* gpu_info);
+bool CONTENT_EXPORT CollectGraphicsInfoD3D(IDirect3D9* d3d, GPUInfo* gpu_info);
// Collects D3D driver version/date through registry lookup.
// Note that this does not require a D3D context.
// device_id here is the raw data in DISPLAY_DEVICE.
-bool CollectDriverInfoD3D(const std::wstring& device_id, GPUInfo* gpu_info);
+bool CONTENT_EXPORT CollectDriverInfoD3D(const std::wstring& device_id,
+ GPUInfo* gpu_info);
// Collect the DirectX Disagnostics information about the attached displays.
bool GetDxDiagnostics(DxDiagNode* output);
#endif
// All platforms have a GL version for collecting information
-bool CollectGraphicsInfoGL(GPUInfo* gpu_info);
+bool CONTENT_EXPORT CollectGraphicsInfoGL(GPUInfo* gpu_info);
// Collect GL and Shading language version information
bool CollectGLVersionInfo(GPUInfo* gpu_info);