summaryrefslogtreecommitdiffstats
path: root/content/common/gpu
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/common/gpu
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/common/gpu')
-rw-r--r--content/common/gpu/gpu_feature_flags.h4
-rw-r--r--content/common/gpu/gpu_info.h3
2 files changed, 4 insertions, 3 deletions
diff --git a/content/common/gpu/gpu_feature_flags.h b/content/common/gpu/gpu_feature_flags.h
index 47ec196..b48ec97 100644
--- a/content/common/gpu/gpu_feature_flags.h
+++ b/content/common/gpu/gpu_feature_flags.h
@@ -14,7 +14,7 @@
#include "base/basictypes.h"
#include "content/common/content_export.h"
-class GpuFeatureFlags {
+class CONTENT_EXPORT GpuFeatureFlags {
public:
enum GpuFeatureType {
kGpuFeatureAccelerated2dCanvas = 1 << 0,
@@ -34,7 +34,7 @@ class GpuFeatureFlags {
// flags are OR combination of GpuFeatureType.
void set_flags(uint32 flags);
- CONTENT_EXPORT uint32 flags() const;
+ uint32 flags() const;
// Resets each flag by OR with the corresponding flag in "other".
void Combine(const GpuFeatureFlags& other);
diff --git a/content/common/gpu/gpu_info.h b/content/common/gpu/gpu_info.h
index 678cb86..46fbf90 100644
--- a/content/common/gpu/gpu_info.h
+++ b/content/common/gpu/gpu_info.h
@@ -15,8 +15,9 @@
#include "base/time.h"
#include "build/build_config.h"
#include "content/common/dx_diag_node.h"
+#include "content/common/content_export.h"
-struct GPUInfo {
+struct CONTENT_EXPORT GPUInfo {
GPUInfo();
~GPUInfo();