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

Unified Diff: Source/wtf/PrintStream.h

Issue 383743002: Oilpan: GC profiling. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: removed Profiling.h Created 6 years, 5 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
« Source/platform/heap/ThreadState.cpp ('K') | « Source/wtf/InstanceCounter.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/wtf/PrintStream.h
diff --git a/Source/wtf/PrintStream.h b/Source/wtf/PrintStream.h
index ceca801c6ca13c120538495630d277db100babf2..3e280cdbe3c8b9d8adf7ee698f2ea50e5341a11a 100644
--- a/Source/wtf/PrintStream.h
+++ b/Source/wtf/PrintStream.h
@@ -30,13 +30,14 @@
#include "wtf/FastAllocBase.h"
#include "wtf/Noncopyable.h"
#include "wtf/StdLibExtras.h"
+#include "wtf/WTFExport.h"
namespace WTF {
class CString;
class String;
-class PrintStream {
+class WTF_EXPORT PrintStream {
WTF_MAKE_FAST_ALLOCATED; WTF_MAKE_NONCOPYABLE(PrintStream);
public:
PrintStream();
@@ -206,21 +207,21 @@ public:
}
};
-void printInternal(PrintStream&, const char*);
-void printInternal(PrintStream&, const CString&);
-void printInternal(PrintStream&, const String&);
+WTF_EXPORT void printInternal(PrintStream&, const char*);
+WTF_EXPORT void printInternal(PrintStream&, const CString&);
+WTF_EXPORT void printInternal(PrintStream&, const String&);
inline void printInternal(PrintStream& out, char* value) { printInternal(out, static_cast<const char*>(value)); }
inline void printInternal(PrintStream& out, CString& value) { printInternal(out, static_cast<const CString&>(value)); }
inline void printInternal(PrintStream& out, String& value) { printInternal(out, static_cast<const String&>(value)); }
-void printInternal(PrintStream&, bool);
-void printInternal(PrintStream&, int);
-void printInternal(PrintStream&, unsigned);
-void printInternal(PrintStream&, long);
-void printInternal(PrintStream&, unsigned long);
-void printInternal(PrintStream&, long long);
-void printInternal(PrintStream&, unsigned long long);
-void printInternal(PrintStream&, float);
-void printInternal(PrintStream&, double);
+WTF_EXPORT void printInternal(PrintStream&, bool);
+WTF_EXPORT void printInternal(PrintStream&, int);
+WTF_EXPORT void printInternal(PrintStream&, unsigned);
+WTF_EXPORT void printInternal(PrintStream&, long);
+WTF_EXPORT void printInternal(PrintStream&, unsigned long);
+WTF_EXPORT void printInternal(PrintStream&, long long);
+WTF_EXPORT void printInternal(PrintStream&, unsigned long long);
+WTF_EXPORT void printInternal(PrintStream&, float);
+WTF_EXPORT void printInternal(PrintStream&, double);
template<typename T>
void printInternal(PrintStream& out, const T& value)
« Source/platform/heap/ThreadState.cpp ('K') | « Source/wtf/InstanceCounter.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698