| Index: third_party/WebKit/Source/wtf/LinkedHashSet.h
|
| diff --git a/third_party/WebKit/Source/wtf/LinkedHashSet.h b/third_party/WebKit/Source/wtf/LinkedHashSet.h
|
| index bdb1f1b20a5d2471d0a5aa58666bf330f133a1f7..58d97fbaac35668e3c0303792561458670afb70f 100644
|
| --- a/third_party/WebKit/Source/wtf/LinkedHashSet.h
|
| +++ b/third_party/WebKit/Source/wtf/LinkedHashSet.h
|
| @@ -23,9 +23,9 @@
|
| #define WTF_LinkedHashSet_h
|
|
|
| #include "wtf/AddressSanitizer.h"
|
| -#include "wtf/DefaultAllocator.h"
|
| #include "wtf/HashSet.h"
|
| #include "wtf/OwnPtr.h"
|
| +#include "wtf/PartitionAllocator.h"
|
| #include "wtf/PassOwnPtr.h"
|
|
|
| namespace WTF {
|
| @@ -138,7 +138,7 @@ template<
|
| typename ValueArg,
|
| typename HashFunctions = typename DefaultHash<ValueArg>::Hash,
|
| typename TraitsArg = HashTraits<ValueArg>,
|
| - typename Allocator = DefaultAllocator>
|
| + typename Allocator = PartitionAllocator>
|
| class LinkedHashSet {
|
| WTF_USE_ALLOCATOR(LinkedHashSet, Allocator);
|
| private:
|
|
|