| Index: third_party/WebKit/Source/wtf/ListHashSet.h
|
| diff --git a/third_party/WebKit/Source/wtf/ListHashSet.h b/third_party/WebKit/Source/wtf/ListHashSet.h
|
| index ebc2220c2649a4829a53003bc0ea33fbd8e3ff52..54aded529e3210ef874dacc7ec394872a8d23a41 100644
|
| --- a/third_party/WebKit/Source/wtf/ListHashSet.h
|
| +++ b/third_party/WebKit/Source/wtf/ListHashSet.h
|
| @@ -23,8 +23,9 @@
|
| #define WTF_ListHashSet_h
|
|
|
| #include "wtf/HashSet.h"
|
| +#include "wtf/OwnPtr.h"
|
| +#include "wtf/PassOwnPtr.h"
|
| #include "wtf/allocator/PartitionAllocator.h"
|
| -#include <memory>
|
|
|
| namespace WTF {
|
|
|
| @@ -267,7 +268,7 @@ struct ListHashSetAllocator : public PartitionAllocator {
|
| }
|
|
|
| private:
|
| - // Not using std::unique_ptr as this pointer should be deleted at
|
| + // Not using OwnPtr as this pointer should be deleted at
|
| // releaseAllocator() method rather than at destructor.
|
| ListHashSetAllocator* m_allocator;
|
| };
|
|
|