diff options
Diffstat (limited to 'WebCore/platform/ThreadGlobalData.h')
-rw-r--r-- | WebCore/platform/ThreadGlobalData.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/WebCore/platform/ThreadGlobalData.h b/WebCore/platform/ThreadGlobalData.h index 17637aa..7faca36 100644 --- a/WebCore/platform/ThreadGlobalData.h +++ b/WebCore/platform/ThreadGlobalData.h @@ -36,6 +36,7 @@ namespace WebCore { class EventNames; struct ICUConverterWrapper; struct TECConverterWrapper; + class ThreadTimers; class ThreadGlobalData : Noncopyable { public: @@ -45,6 +46,7 @@ namespace WebCore { EventNames& eventNames() { return *m_eventNames; } StringImpl* emptyString() { return m_emptyString; } HashSet<StringImpl*>& atomicStringTable() { return *m_atomicStringTable; } + ThreadTimers& threadTimers() { return *m_threadTimers; } #if USE(ICU_UNICODE) ICUConverterWrapper& cachedConverterICU() { return *m_cachedConverterICU; } @@ -58,6 +60,7 @@ namespace WebCore { StringImpl* m_emptyString; HashSet<StringImpl*>* m_atomicStringTable; EventNames* m_eventNames; + ThreadTimers* m_threadTimers; #if USE(ICU_UNICODE) ICUConverterWrapper* m_cachedConverterICU; |