Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1151)

Unified Diff: Source/heap/Handle.h

Issue 178663004: Oilpan: move WorkerGlobalScope to oilpan's heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove redundant include Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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); }

Powered by Google App Engine
This is Rietveld 408576698