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

Unified Diff: Source/WebCore/platform/ThreadGlobalData.h

Issue 8210003: Merge 96999 - Make isXMLMIMEType regex use TLS (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/874/
Patch Set: Created 9 years, 2 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/WebCore/dom/DOMImplementation.cpp ('k') | Source/WebCore/platform/ThreadGlobalData.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/WebCore/platform/ThreadGlobalData.h
===================================================================
--- Source/WebCore/platform/ThreadGlobalData.h (revision 97019)
+++ Source/WebCore/platform/ThreadGlobalData.h (working copy)
@@ -43,6 +43,7 @@
class EventNames;
class ThreadTimers;
+ class XMLMIMETypeRegExp;
struct ICUConverterWrapper;
struct TECConverterWrapper;
@@ -56,6 +57,7 @@
EventNames& eventNames() { return *m_eventNames; }
ThreadTimers& threadTimers() { return *m_threadTimers; }
+ XMLMIMETypeRegExp& xmlTypeRegExp() { return *m_xmlTypeRegExp; }
#if USE(ICU_UNICODE)
ICUConverterWrapper& cachedConverterICU() { return *m_cachedConverterICU; }
@@ -68,6 +70,7 @@
private:
EventNames* m_eventNames;
ThreadTimers* m_threadTimers;
+ XMLMIMETypeRegExp* m_xmlTypeRegExp;
#ifndef NDEBUG
bool m_isMainThread;
« no previous file with comments | « Source/WebCore/dom/DOMImplementation.cpp ('k') | Source/WebCore/platform/ThreadGlobalData.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698