| Index: third_party/WebKit/Source/wtf/HashCountedSet.h
|
| diff --git a/third_party/WebKit/Source/wtf/HashCountedSet.h b/third_party/WebKit/Source/wtf/HashCountedSet.h
|
| index fc60257d7e8ec265aed82e8e203bc9a9cff0ec14..2c68aefab410086f098e87b02a7730b8de29d375 100644
|
| --- a/third_party/WebKit/Source/wtf/HashCountedSet.h
|
| +++ b/third_party/WebKit/Source/wtf/HashCountedSet.h
|
| @@ -24,6 +24,7 @@
|
| #include "wtf/Assertions.h"
|
| #include "wtf/HashMap.h"
|
| #include "wtf/Vector.h"
|
| +#include "wtf/allocator/PartitionAllocator.h"
|
|
|
| namespace WTF {
|
|
|
| @@ -35,7 +36,7 @@ template <typename Value,
|
| typename Traits = HashTraits<Value>,
|
| typename Allocator = PartitionAllocator>
|
| class HashCountedSet {
|
| - WTF_USE_ALLOCATOR(HashCountedSet, Allocator);
|
| + USE_ALLOCATOR(HashCountedSet, Allocator);
|
| WTF_MAKE_NONCOPYABLE(HashCountedSet);
|
|
|
| private:
|
|
|