| Index: Source/wtf/WTF.h
|
| diff --git a/Source/wtf/WTF.h b/Source/wtf/WTF.h
|
| index d42bf2a27765f71a03fec47bd7996bf4079ba8ca..c172996d415643ed56617df7aae8834437cc70e5 100644
|
| --- a/Source/wtf/WTF.h
|
| +++ b/Source/wtf/WTF.h
|
| @@ -33,7 +33,6 @@
|
|
|
| #include "wtf/Compiler.h"
|
| #include "wtf/CurrentTime.h"
|
| -#include "wtf/PartitionAlloc.h"
|
| #include "wtf/WTFExport.h"
|
|
|
| namespace WTF {
|
| @@ -43,22 +42,6 @@ WTF_EXPORT void initialize(TimeFunction currentTimeFunction, TimeFunction monoto
|
| WTF_EXPORT void shutdown();
|
| WTF_EXPORT bool isShutdown();
|
|
|
| -class WTF_EXPORT Partitions {
|
| -public:
|
| - static void initialize();
|
| - static void shutdown();
|
| - static ALWAYS_INLINE PartitionRootGeneric* getBufferPartition()
|
| - {
|
| - if (UNLIKELY(!s_initialized))
|
| - initialize();
|
| - return m_bufferAllocator.root();
|
| - }
|
| -
|
| -private:
|
| - static bool s_initialized;
|
| - static PartitionAllocatorGeneric m_bufferAllocator;
|
| -};
|
| -
|
| } // namespace WTF
|
|
|
| #endif // WTF_h
|
|
|