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

Unified Diff: runtime/vm/isolate.h

Issue 8588040: Add a mid-sized integration test for the Dart Embedding Api which (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 9 years, 1 month 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
===================================================================
--- runtime/vm/isolate.h (revision 1518)
+++ runtime/vm/isolate.h (working copy)
@@ -46,6 +46,13 @@
StoreBufferBlock* store_buffer() { return &store_buffer_; }
+ Dart_CreatePortCallback create_port_callback() const {
+ return create_port_callback_;
+ }
+ void set_create_port_callback(Dart_CreatePortCallback value) {
+ create_port_callback_ = value;
+ }
+
Dart_PostMessageCallback post_message_callback() const {
return post_message_callback_;
}
@@ -238,6 +245,7 @@
StoreBufferBlock store_buffer_;
Monitor* monitor_;
MessageQueue* message_queue_;
+ Dart_CreatePortCallback create_port_callback_;
Dart_PostMessageCallback post_message_callback_;
Dart_ClosePortCallback close_port_callback_;
intptr_t active_ports_;

Powered by Google App Engine
This is Rietveld 408576698