| 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 65f5100a8f133fa66fb81d123c1a0c710d546375..08165b4e6048b75fed7103312a818e16697e300d 100644
|
| --- a/third_party/WebKit/Source/wtf/LinkedHashSet.h
|
| +++ b/third_party/WebKit/Source/wtf/LinkedHashSet.h
|
| @@ -23,9 +23,9 @@
|
| #ifndef WTF_LinkedHashSet_h
|
| #define WTF_LinkedHashSet_h
|
|
|
| +#include "base/allocator/partition_allocator/partition_allocator.h"
|
| #include "wtf/AddressSanitizer.h"
|
| #include "wtf/HashSet.h"
|
| -#include "wtf/allocator/PartitionAllocator.h"
|
|
|
| namespace WTF {
|
|
|
| @@ -157,7 +157,7 @@ template <typename ValueArg,
|
| typename TraitsArg = HashTraits<ValueArg>,
|
| typename Allocator = PartitionAllocator>
|
| class LinkedHashSet {
|
| - WTF_USE_ALLOCATOR(LinkedHashSet, Allocator);
|
| + USE_ALLOCATOR(LinkedHashSet, Allocator);
|
|
|
| private:
|
| typedef ValueArg Value;
|
|
|