Index: src/heap/heap-inl.h |
diff --git a/src/heap/heap-inl.h b/src/heap/heap-inl.h |
index f9c9235320b25df45a116cd08fd04fe7b4692451..1882cd3fb585c63f5d9330101374ffbe6cc43daf 100644 |
--- a/src/heap/heap-inl.h |
+++ b/src/heap/heap-inl.h |
@@ -510,7 +510,7 @@ AllocationMemento* Heap::FindAllocationMemento(HeapObject* object) { |
template <Heap::UpdateAllocationSiteMode mode> |
void Heap::UpdateAllocationSite(HeapObject* object, |
- HashMap* pretenuring_feedback) { |
+ base::HashMap* pretenuring_feedback) { |
DCHECK(InFromSpace(object)); |
if (!FLAG_allocation_site_pretenuring || |
!AllocationSite::CanTrack(object->map()->instance_type())) |
@@ -538,7 +538,7 @@ void Heap::UpdateAllocationSite(HeapObject* object, |
// to dereference the allocation site and rather have to postpone all checks |
// till actually merging the data. |
Address key = memento_candidate->GetAllocationSiteUnchecked(); |
- HashMap::Entry* e = |
+ base::HashMap::Entry* e = |
pretenuring_feedback->LookupOrInsert(key, ObjectHash(key)); |
DCHECK(e != nullptr); |
(*bit_cast<intptr_t*>(&e->value))++; |