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

Unified Diff: Source/wtf/MemoryInstrumentation.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/MainThread.cpp ('k') | Source/wtf/OSRandomSource.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/wtf/MemoryInstrumentation.h
diff --git a/Source/wtf/MemoryInstrumentation.h b/Source/wtf/MemoryInstrumentation.h
index 0589d72e45558addce3b3029b51fd6ec688fea83..5643d5f34dff08acdec2e41a0df726388fd81fbc 100644
--- a/Source/wtf/MemoryInstrumentation.h
+++ b/Source/wtf/MemoryInstrumentation.h
@@ -31,9 +31,10 @@
#ifndef MemoryInstrumentation_h
#define MemoryInstrumentation_h
-#include <wtf/OwnPtr.h>
-#include <wtf/PassOwnPtr.h>
-#include <wtf/RefPtr.h>
+#include "wtf/OwnPtr.h"
+#include "wtf/PassOwnPtr.h"
+#include "wtf/RefPtr.h"
+#include "wtf/WTFExport.h"
#define DEBUG_POINTER_INSTRUMENTATION 0
@@ -93,7 +94,7 @@ public:
virtual int registerString(const char*) = 0;
};
-class MemoryInstrumentation {
+class WTF_EXPORT MemoryInstrumentation {
public:
explicit MemoryInstrumentation(MemoryInstrumentationClient*);
virtual ~MemoryInstrumentation();
@@ -143,7 +144,7 @@ public:
};
protected:
- class WrapperBase {
+ class WTF_EXPORT WrapperBase {
public:
WrapperBase(MemoryObjectType, const void* pointer);
virtual ~WrapperBase() { }
@@ -248,7 +249,7 @@ template <typename T> char* fn() { return FN<T>::fn(); }
template <typename T> char* fn() { return const_cast<char*>(__PRETTY_FUNCTION__); }
#endif
-class MemoryClassInfo {
+class WTF_EXPORT MemoryClassInfo {
public:
template<typename T>
MemoryClassInfo(MemoryObjectInfo* memoryObjectInfo, const T* pointer, MemoryObjectType objectType = 0, size_t actualSize = sizeof(T))
« no previous file with comments | « Source/wtf/MainThread.cpp ('k') | Source/wtf/OSRandomSource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698