| Index: Source/heap/Handle.h
|
| diff --git a/Source/heap/Handle.h b/Source/heap/Handle.h
|
| index 0387ba9eceae8051031d5c773b3071731bc1dfcd..035e63fec6b4ac8994d89156c0adec0f157994dd 100644
|
| --- a/Source/heap/Handle.h
|
| +++ b/Source/heap/Handle.h
|
| @@ -561,6 +561,8 @@ template<typename T, typename U> inline bool operator!=(const Persistent<T>& a,
|
| #define WillBePersistentHeapHashSet WebCore::PersistentHeapHashSet
|
| #define WillBeHeapVector WebCore::HeapVector
|
| #define WillBePersistentHeapVector WebCore::PersistentHeapVector
|
| +#define WillBeHeapSupplement WebCore::HeapSupplement
|
| +#define WillBeHeapSupplementable WebCore::HeapSupplementable
|
|
|
| template<typename T> PassRefPtrWillBeRawPtr<T> adoptRefWillBeNoop(T* ptr)
|
| {
|
| @@ -619,6 +621,8 @@ public:
|
| #define WillBePersistentHeapHashSet WTF::HashSet
|
| #define WillBeHeapVector WTF::Vector
|
| #define WillBePersistentHeapVector WTF::Vector
|
| +#define WillBeHeapSupplement WebCore::Supplement
|
| +#define WillBeHeapSupplementable WebCore::Supplementable
|
|
|
| template<typename T> PassRefPtrWillBeRawPtr<T> adoptRefWillBeNoop(T* ptr) { return adoptRef(ptr); }
|
| template<typename T> PassRefPtrWillBeRawPtr<T> adoptRefCountedWillBeRefCountedGarbageCollected(T* ptr) { return adoptRef(ptr); }
|
|
|