Chromium Code Reviews| 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 |
|
haraken
2014/02/27 02:46:01
Nit: I'd prefer "GarbageCollectedSupplementable" a
haraken
2014/02/27 08:39:50
Nit: Now I agree with "HeapSupplement" since it do
sof
2014/02/27 08:50:37
Nooo... I've just gone through the pains of renami
haraken
2014/02/27 09:07:20
I AM Sorry!
|
| 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); } |