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

Unified Diff: third_party/WebKit/Source/platform/heap/Handle.h

Issue 1884083002: Revert of Rename Heap to ThreadHeap (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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: third_party/WebKit/Source/platform/heap/Handle.h
diff --git a/third_party/WebKit/Source/platform/heap/Handle.h b/third_party/WebKit/Source/platform/heap/Handle.h
index b6a849e1407a2f9dd77a14f7ac8299063d9a4bac..41fb5f833578efee015a44b7a78c54e5be4332ef 100644
--- a/third_party/WebKit/Source/platform/heap/Handle.h
+++ b/third_party/WebKit/Source/platform/heap/Handle.h
@@ -274,15 +274,15 @@
if (!m_raw)
return;
- // ThreadHeap::isHeapObjectAlive(m_raw) checks that m_raw is a traceable
+ // Heap::isHeapObjectAlive(m_raw) checks that m_raw is a traceable
// object. In other words, it checks that the pointer is either of:
//
// (a) a pointer to the head of an on-heap object.
// (b) a pointer to the head of an on-heap mixin object.
//
- // Otherwise, ThreadHeap::isHeapObjectAlive will crash when it calls
+ // Otherwise, Heap::isHeapObjectAlive will crash when it calls
// header->checkHeader().
- ThreadHeap::isHeapObjectAlive(m_raw);
+ Heap::isHeapObjectAlive(m_raw);
#endif
}
@@ -844,7 +844,7 @@
// (a) a pointer to the head of an on-heap object.
// (b) a pointer to the head of an on-heap mixin object.
//
- // We can check it by calling ThreadHeap::isHeapObjectAlive(m_raw),
+ // We can check it by calling Heap::isHeapObjectAlive(m_raw),
// but we cannot call it here because it requires to include T.h.
// So we currently only try to implement the check for (a), but do
// not insist that T's definition is in scope.
« no previous file with comments | « third_party/WebKit/Source/platform/heap/GarbageCollected.h ('k') | third_party/WebKit/Source/platform/heap/Heap.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698