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

Unified Diff: Source/wtf/BitVector.h

Issue 15861022: Build WTF as dll in component build (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix AutoDrainedPool ctor and ThreadSpecificThreadExit exports Created 7 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/wtf/AutodrainedPool.h ('k') | Source/wtf/CryptographicallyRandomNumber.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/wtf/BitVector.h
diff --git a/Source/wtf/BitVector.h b/Source/wtf/BitVector.h
index 29620764d01f4654fcc3f0af489393f483ab0172..6d386b0de096821e98ba43c4d9883c6407863853 100644
--- a/Source/wtf/BitVector.h
+++ b/Source/wtf/BitVector.h
@@ -27,9 +27,10 @@
#define BitVector_h
#include <stdio.h>
-#include <wtf/Assertions.h>
-#include <wtf/PrintStream.h>
-#include <wtf/StdLibExtras.h>
+#include "wtf/Assertions.h"
+#include "wtf/PrintStream.h"
+#include "wtf/StdLibExtras.h"
+#include "wtf/WTFExport.h"
namespace WTF {
@@ -54,7 +55,7 @@ namespace WTF {
// juggle a lot of variable-length BitVectors and you're worried about wasting
// space.
-class BitVector {
+class WTF_EXPORT BitVector {
public:
BitVector()
: m_bitsOrPointer(makeInlineBits(0))
« no previous file with comments | « Source/wtf/AutodrainedPool.h ('k') | Source/wtf/CryptographicallyRandomNumber.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698