| Index: runtime/vm/isolate.h
|
| diff --git a/runtime/vm/isolate.h b/runtime/vm/isolate.h
|
| index 107a92b9f13f8c784643871dee4669aa63fda482..370afa0f208b23efdd61eaca9ed4d37aad204192 100644
|
| --- a/runtime/vm/isolate.h
|
| +++ b/runtime/vm/isolate.h
|
| @@ -121,13 +121,10 @@ class Isolate : public BaseIsolate {
|
|
|
| // Visit all object pointers.
|
| void IterateObjectPointers(ObjectPointerVisitor* visitor,
|
| - bool visit_prologue_weak_persistent_handles,
|
| bool validate_frames);
|
|
|
| // Visits weak object pointers.
|
| - void VisitWeakPersistentHandles(HandleVisitor* visitor,
|
| - bool visit_prologue_weak_persistent_handles);
|
| - void VisitPrologueWeakPersistentHandles(HandleVisitor* visitor);
|
| + void VisitWeakPersistentHandles(HandleVisitor* visitor);
|
|
|
| StoreBuffer* store_buffer() { return store_buffer_; }
|
|
|
| @@ -694,9 +691,7 @@ class Isolate : public BaseIsolate {
|
|
|
| // Visit all object pointers. Caller must ensure concurrent sweeper is not
|
| // running, and the visitor must not allocate.
|
| - void VisitObjectPointers(ObjectPointerVisitor* visitor,
|
| - bool visit_prologue_weak_persistent_handles,
|
| - bool validate_frames);
|
| + void VisitObjectPointers(ObjectPointerVisitor* visitor, bool validate_frames);
|
|
|
| void set_user_tag(uword tag) {
|
| user_tag_ = tag;
|
|
|