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

Unified Diff: runtime/vm/isolate.h

Issue 8984006: Implement weak persistent handles in the Dart API. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address review comments Created 9 years 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
Index: runtime/vm/isolate.h
diff --git a/runtime/vm/isolate.h b/runtime/vm/isolate.h
index afccaf47b8e9cf3590661c5762788ade28e17a4a..002913ccdcde0338efbf3595560a9915674d2fb4 100644
--- a/runtime/vm/isolate.h
+++ b/runtime/vm/isolate.h
@@ -46,6 +46,11 @@ class Isolate {
// Visit all object pointers.
void VisitObjectPointers(ObjectPointerVisitor* visitor, bool validate_frames);
+ void VisitStrongObjectPointers(ObjectPointerVisitor* visitor,
+ bool validate_frames);
+
+ void VisitWeakObjectPointers(ObjectPointerVisitor* visitor);
+
StoreBufferBlock* store_buffer() { return &store_buffer_; }
Dart_PostMessageCallback post_message_callback() const {

Powered by Google App Engine
This is Rietveld 408576698