| Index: src/heap/heap.h
|
| diff --git a/src/heap/heap.h b/src/heap/heap.h
|
| index c97c1889d1614b63298828745d6b360594bcbea5..9d5af4b0e8be4e84ce6480c5ea62f7d9bb7f653b 100644
|
| --- a/src/heap/heap.h
|
| +++ b/src/heap/heap.h
|
| @@ -1377,7 +1377,7 @@ class Heap {
|
| // value) is cached on the local pretenuring feedback.
|
| template <UpdateAllocationSiteMode mode>
|
| inline void UpdateAllocationSite(HeapObject* object,
|
| - HashMap* pretenuring_feedback);
|
| + base::HashMap* pretenuring_feedback);
|
|
|
| // Removes an entry from the global pretenuring storage.
|
| inline void RemoveAllocationSitePretenuringFeedback(AllocationSite* site);
|
| @@ -1386,7 +1386,7 @@ class Heap {
|
| // method needs to be called after evacuation, as allocation sites may be
|
| // evacuated and this method resolves forward pointers accordingly.
|
| void MergeAllocationSitePretenuringFeedback(
|
| - const HashMap& local_pretenuring_feedback);
|
| + const base::HashMap& local_pretenuring_feedback);
|
|
|
| // =============================================================================
|
|
|
| @@ -2210,7 +2210,7 @@ class Heap {
|
| // storage is only alive temporary during a GC. The invariant is that all
|
| // pointers in this map are already fixed, i.e., they do not point to
|
| // forwarding pointers.
|
| - HashMap* global_pretenuring_feedback_;
|
| + base::HashMap* global_pretenuring_feedback_;
|
|
|
| char trace_ring_buffer_[kTraceRingBufferSize];
|
| // If it's not full then the data is from 0 to ring_buffer_end_. If it's
|
|
|