Index: Source/platform/Logging.h |
diff --git a/Source/core/platform/Logging.h b/Source/platform/Logging.h |
similarity index 52% |
rename from Source/core/platform/Logging.h |
rename to Source/platform/Logging.h |
index bdad93f413920ba5b245abccaa106a8a2af1de71..9dac220c41a3139341ddcae02625e9dad5bd3e6e 100644 |
--- a/Source/core/platform/Logging.h |
+++ b/Source/platform/Logging.h |
@@ -26,6 +26,7 @@ |
#ifndef Logging_h |
#define Logging_h |
+#include "platform/PlatformExport.h" |
#include "wtf/Assertions.h" |
#include "wtf/Forward.h" |
@@ -37,34 +38,35 @@ |
namespace WebCore { |
- extern WTFLogChannel LogNotYetImplemented; |
- extern WTFLogChannel LogFrames; |
- extern WTFLogChannel LogLoading; |
- extern WTFLogChannel LogPopupBlocking; |
- extern WTFLogChannel LogEvents; |
- extern WTFLogChannel LogEditing; |
- extern WTFLogChannel LogLiveConnect; |
- extern WTFLogChannel LogIconDatabase; |
- extern WTFLogChannel LogSQLDatabase; |
- extern WTFLogChannel LogSpellingAndGrammar; |
- extern WTFLogChannel LogBackForward; |
- extern WTFLogChannel LogHistory; |
- extern WTFLogChannel LogPlatformLeaks; |
- extern WTFLogChannel LogResourceLoading; |
- extern WTFLogChannel LogNetwork; |
- extern WTFLogChannel LogFTP; |
- extern WTFLogChannel LogThreading; |
- extern WTFLogChannel LogStorageAPI; |
- extern WTFLogChannel LogMedia; |
- extern WTFLogChannel LogPlugins; |
- extern WTFLogChannel LogArchives; |
- extern WTFLogChannel LogProgress; |
- extern WTFLogChannel LogFileAPI; |
- extern WTFLogChannel LogWebAudio; |
- extern WTFLogChannel LogCompositing; |
- extern WTFLogChannel LogGamepad; |
+PLATFORM_EXPORT extern WTFLogChannel LogNotYetImplemented; |
+PLATFORM_EXPORT extern WTFLogChannel LogFrames; |
+PLATFORM_EXPORT extern WTFLogChannel LogLoading; |
+PLATFORM_EXPORT extern WTFLogChannel LogPopupBlocking; |
+PLATFORM_EXPORT extern WTFLogChannel LogEvents; |
+PLATFORM_EXPORT extern WTFLogChannel LogEditing; |
+PLATFORM_EXPORT extern WTFLogChannel LogLiveConnect; |
+PLATFORM_EXPORT extern WTFLogChannel LogIconDatabase; |
+PLATFORM_EXPORT extern WTFLogChannel LogSQLDatabase; |
+PLATFORM_EXPORT extern WTFLogChannel LogSpellingAndGrammar; |
+PLATFORM_EXPORT extern WTFLogChannel LogBackForward; |
+PLATFORM_EXPORT extern WTFLogChannel LogHistory; |
+PLATFORM_EXPORT extern WTFLogChannel LogPlatformLeaks; |
+PLATFORM_EXPORT extern WTFLogChannel LogResourceLoading; |
+PLATFORM_EXPORT extern WTFLogChannel LogNetwork; |
+PLATFORM_EXPORT extern WTFLogChannel LogFTP; |
+PLATFORM_EXPORT extern WTFLogChannel LogThreading; |
+PLATFORM_EXPORT extern WTFLogChannel LogStorageAPI; |
+PLATFORM_EXPORT extern WTFLogChannel LogMedia; |
+PLATFORM_EXPORT extern WTFLogChannel LogPlugins; |
+PLATFORM_EXPORT extern WTFLogChannel LogArchives; |
+PLATFORM_EXPORT extern WTFLogChannel LogProgress; |
+PLATFORM_EXPORT extern WTFLogChannel LogFileAPI; |
+PLATFORM_EXPORT extern WTFLogChannel LogWebAudio; |
+PLATFORM_EXPORT extern WTFLogChannel LogCompositing; |
+PLATFORM_EXPORT extern WTFLogChannel LogGamepad; |
+ |
+PLATFORM_EXPORT WTFLogChannel* getChannelFromName(const String& channelName); |
- WTFLogChannel* getChannelFromName(const String& channelName); |
} |
#endif // !LOG_DISABLED |