summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorisherman@chromium.org <isherman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-12-01 00:37:16 +0000
committerisherman@chromium.org <isherman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-12-01 00:37:16 +0000
commit8d85a4b93067def07388e577b5c9e95de27f06b6 (patch)
treeffda12a447a8b83f4badf734f02fde7730a4f607
parent5c92889ea9b6e4663fc5f3743f92b1a03bd1316d (diff)
downloadchromium_src-8d85a4b93067def07388e577b5c9e95de27f06b6.zip
chromium_src-8d85a4b93067def07388e577b5c9e95de27f06b6.tar.gz
chromium_src-8d85a4b93067def07388e577b5c9e95de27f06b6.tar.bz2
add missing CONTENT_EXPORT
BUG=build fix Review URL: http://codereview.chromium.org/8762013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112352 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--content/common/gamepad_seqlock.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/content/common/gamepad_seqlock.h b/content/common/gamepad_seqlock.h
index 811aeca..35f51e5 100644
--- a/content/common/gamepad_seqlock.h
+++ b/content/common/gamepad_seqlock.h
@@ -7,6 +7,7 @@
#include "base/atomicops.h"
#include "base/threading/platform_thread.h"
+#include "content/common/content_export.h"
namespace content {
@@ -27,7 +28,7 @@ namespace content {
// garbage, or indices could be out of range. Probably the only suitable thing
// to do during the read loop is to make a copy of the data, and operate on it
// only after the read was found to be consistent.
-class GamepadSeqLock {
+class CONTENT_EXPORT GamepadSeqLock {
public:
GamepadSeqLock();
base::subtle::Atomic32 ReadBegin();