summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/WebKit/Source/wtf/WTF.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/WebKit/Source/wtf/WTF.h')
-rw-r--r--chromium/third_party/WebKit/Source/wtf/WTF.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/chromium/third_party/WebKit/Source/wtf/WTF.h b/chromium/third_party/WebKit/Source/wtf/WTF.h
index ffd733967a1..d42bf2a2776 100644
--- a/chromium/third_party/WebKit/Source/wtf/WTF.h
+++ b/chromium/third_party/WebKit/Source/wtf/WTF.h
@@ -47,7 +47,7 @@ class WTF_EXPORT Partitions {
public:
static void initialize();
static void shutdown();
- static ALWAYS_INLINE PartitionRoot* getBufferPartition()
+ static ALWAYS_INLINE PartitionRootGeneric* getBufferPartition()
{
if (UNLIKELY(!s_initialized))
initialize();
@@ -56,7 +56,7 @@ public:
private:
static bool s_initialized;
- static PartitionAllocator<4096> m_bufferAllocator;
+ static PartitionAllocatorGeneric m_bufferAllocator;
};
} // namespace WTF