Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5)

Unified Diff: runtime/vm/gc_marker.h

Issue 3001343002: Remove GC prologue and epilogue callbacks. (Closed)
Patch Set: Created 3 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/vm/dart_api_impl_test.cc ('k') | runtime/vm/gc_marker.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/gc_marker.h
diff --git a/runtime/vm/gc_marker.h b/runtime/vm/gc_marker.h
index ace01c41066b8505edff455a29899e28e0ebf239..7bfa182915b802f7ea8267e2008ce225b911b645 100644
--- a/runtime/vm/gc_marker.h
+++ b/runtime/vm/gc_marker.h
@@ -27,14 +27,13 @@ class GCMarker : public ValueObject {
void MarkObjects(Isolate* isolate,
PageSpace* page_space,
- bool invoke_api_callbacks,
bool collect_code);
intptr_t marked_words() { return marked_bytes_ >> kWordSizeLog2; }
private:
- void Prologue(Isolate* isolate, bool invoke_api_callbacks);
- void Epilogue(Isolate* isolate, bool invoke_api_callbacks);
+ void Prologue(Isolate* isolate);
+ void Epilogue(Isolate* isolate);
void IterateRoots(Isolate* isolate,
ObjectPointerVisitor* visitor,
intptr_t slice_index,
« no previous file with comments | « runtime/vm/dart_api_impl_test.cc ('k') | runtime/vm/gc_marker.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698