// Copyright 2014 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "third_party/blink/renderer/platform/wtf/allocator/partition_allocator.h" #include "partition_alloc/partition_alloc.h" #include "third_party/blink/renderer/platform/wtf/allocator/partitions.h" namespace WTF { void* PartitionAllocator::AllocateBacking(size_t size, const char* type_name) { … } void PartitionAllocator::FreeBacking(void* address) { … } template <> char* PartitionAllocator::AllocateVectorBacking<char>(size_t size) { … } } // namespace WTF