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. |