summaryrefslogtreecommitdiffstats
path: root/WebCore/platform/ThreadGlobalData.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/platform/ThreadGlobalData.h')
-rw-r--r--WebCore/platform/ThreadGlobalData.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/WebCore/platform/ThreadGlobalData.h b/WebCore/platform/ThreadGlobalData.h
index 7faca36..e0aa092 100644
--- a/WebCore/platform/ThreadGlobalData.h
+++ b/WebCore/platform/ThreadGlobalData.h
@@ -48,7 +48,7 @@ namespace WebCore {
HashSet<StringImpl*>& atomicStringTable() { return *m_atomicStringTable; }
ThreadTimers& threadTimers() { return *m_threadTimers; }
-#if USE(ICU_UNICODE)
+#if USE(ICU_UNICODE) || USE(GLIB_ICU_UNICODE_HYBRID)
ICUConverterWrapper& cachedConverterICU() { return *m_cachedConverterICU; }
#endif
@@ -62,7 +62,11 @@ namespace WebCore {
EventNames* m_eventNames;
ThreadTimers* m_threadTimers;
-#if USE(ICU_UNICODE)
+#ifndef NDEBUG
+ bool m_isMainThread;
+#endif
+
+#if USE(ICU_UNICODE) || USE(GLIB_ICU_UNICODE_HYBRID)
ICUConverterWrapper* m_cachedConverterICU;
#endif