| Index: src/heap/store-buffer.h
|
| diff --git a/src/heap/store-buffer.h b/src/heap/store-buffer.h
|
| index 5eda785d2985a2e78ffeea69e8106b01c45dd3e3..9eeb00117b8509cd9082b2fdc9f61ee9692ad718 100644
|
| --- a/src/heap/store-buffer.h
|
| +++ b/src/heap/store-buffer.h
|
| @@ -19,9 +19,6 @@ class StoreBuffer;
|
|
|
| typedef void (*ObjectSlotCallback)(HeapObject** from, HeapObject* to);
|
|
|
| -typedef void (StoreBuffer::*RegionCallback)(Address start, Address end,
|
| - ObjectSlotCallback slot_callback);
|
| -
|
| // Used to implement the write barrier by collecting addresses of pointers
|
| // between spaces.
|
| class StoreBuffer {
|
| @@ -147,15 +144,6 @@ class StoreBuffer {
|
| void FindPointersToNewSpaceInRegion(Address start, Address end,
|
| ObjectSlotCallback slot_callback);
|
|
|
| - // For each region of pointers on a page in use from an old space call
|
| - // visit_pointer_region callback.
|
| - // If either visit_pointer_region or callback can cause an allocation
|
| - // in old space and changes in allocation watermark then
|
| - // can_preallocate_during_iteration should be set to true.
|
| - void IteratePointersOnPage(PagedSpace* space, Page* page,
|
| - RegionCallback region_callback,
|
| - ObjectSlotCallback slot_callback);
|
| -
|
| void IteratePointersInStoreBuffer(ObjectSlotCallback slot_callback);
|
|
|
| #ifdef VERIFY_HEAP
|
|
|