Chromium Code Reviews| Index: third_party/WebKit/Source/wtf/text/AtomicString.h |
| diff --git a/third_party/WebKit/Source/wtf/text/AtomicString.h b/third_party/WebKit/Source/wtf/text/AtomicString.h |
| index e90a664e370ea9bf005d58da335beef49eae28dc..6c0dfb230e30b65585e9c470ef82ed45f715627a 100644 |
| --- a/third_party/WebKit/Source/wtf/text/AtomicString.h |
| +++ b/third_party/WebKit/Source/wtf/text/AtomicString.h |
| @@ -29,6 +29,7 @@ |
| namespace WTF { |
| struct AtomicStringHash; |
| +class AtomicStringTable; |
| class WTF_EXPORT AtomicString { |
| public: |
| @@ -180,6 +181,10 @@ private: |
| #endif |
| static AtomicString fromUTF8Internal(const char*, const char*); |
| + |
| + static AtomicStringTable* createAtomicStringTable(); |
|
tkent
2015/10/04 22:47:47
I wonder why createAtomicStringTable and destroyAt
|
| + static void destroyAtomicStringTable(AtomicStringTable*); |
| + friend class WTFThreadData; |
| }; |
| inline bool operator==(const AtomicString& a, const AtomicString& b) { return a.impl() == b.impl(); } |