Index: src/heap/heap.h |
diff --git a/src/heap/heap.h b/src/heap/heap.h |
index 5dfae06c3ab1bd01dc673e3005fb7f923207fb49..2d3a41517f6b771c355d99a27421d64961237f6d 100644 |
--- a/src/heap/heap.h |
+++ b/src/heap/heap.h |
@@ -868,13 +868,6 @@ class Heap { |
return last_array_buffer_in_list_; |
} |
- void set_new_array_buffer_views_list(Object* object) { |
- new_array_buffer_views_list_ = object; |
- } |
- Object* new_array_buffer_views_list() const { |
- return new_array_buffer_views_list_; |
- } |
- |
void set_allocation_sites_list(Object* object) { |
allocation_sites_list_ = object; |
} |
@@ -1668,11 +1661,6 @@ class Heap { |
Object* last_array_buffer_in_list_; |
Object* allocation_sites_list_; |
- // This is a global list of array buffer views in new space. When the views |
- // get promoted, they are removed form the list and added to the corresponding |
- // array buffer. |
- Object* new_array_buffer_views_list_; |
- |
// List of encountered weak collections (JSWeakMap and JSWeakSet) during |
// marking. It is initialized during marking, destroyed after marking and |
// contains Smi(0) while marking is not active. |
@@ -2003,7 +1991,6 @@ class Heap { |
void ProcessNativeContexts(WeakObjectRetainer* retainer); |
void ProcessArrayBuffers(WeakObjectRetainer* retainer, bool stop_after_young); |
- void ProcessNewArrayBufferViews(WeakObjectRetainer* retainer); |
void ProcessAllocationSites(WeakObjectRetainer* retainer); |
// Deopts all code that contains allocation instruction which are tenured or |