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

Unified Diff: runtime/vm/object_store.h

Issue 243973002: - Add a minimal implementation of Capability. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 8 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/object.cc ('k') | runtime/vm/object_store.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/object_store.h
===================================================================
--- runtime/vm/object_store.h (revision 35287)
+++ runtime/vm/object_store.h (working copy)
@@ -407,20 +407,13 @@
preallocated_stack_trace_ = value.raw();
}
- RawFunction* receive_port_create_function() const {
- return receive_port_create_function_;
+ RawFunction* lookup_port_handler() const {
+ return lookup_port_handler_;
}
- void set_receive_port_create_function(const Function& function) {
- receive_port_create_function_ = function.raw();
+ void set_lookup_port_handler(const Function& function) {
+ lookup_port_handler_ = function.raw();
}
- RawFunction* lookup_receive_port_function() const {
- return lookup_receive_port_function_;
- }
- void set_lookup_receive_port_function(const Function& function) {
- lookup_receive_port_function_ = function.raw();
- }
-
RawFunction* handle_message_function() const {
return handle_message_function_;
}
@@ -512,8 +505,7 @@
RawInstance* stack_overflow_;
RawInstance* out_of_memory_;
RawStacktrace* preallocated_stack_trace_;
- RawFunction* receive_port_create_function_;
- RawFunction* lookup_receive_port_function_;
+ RawFunction* lookup_port_handler_;
RawFunction* handle_message_function_;
RawObject** to() {
return reinterpret_cast<RawObject**>(&handle_message_function_);
« no previous file with comments | « runtime/vm/object.cc ('k') | runtime/vm/object_store.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698