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

Unified Diff: runtime/vm/object_store.cc

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
Index: runtime/vm/object_store.cc
===================================================================
--- runtime/vm/object_store.cc (revision 35191)
+++ runtime/vm/object_store.cc (working copy)
@@ -49,6 +49,7 @@
float64x2_class_(Class::null()),
typed_data_classes_(Array::null()),
error_class_(Class::null()),
+ capability_class_(Class::null()),
turnidge 2014/04/22 18:40:45 Should you add the receive port and send port clas
Ivan Posva 2014/04/22 21:28:30 There is no need to follow that outdated pattern o
stacktrace_class_(Class::null()),
jsregexp_class_(Class::null()),
weak_property_class_(Class::null()),
@@ -74,8 +75,7 @@
stack_overflow_(Instance::null()),
out_of_memory_(Instance::null()),
preallocated_stack_trace_(Stacktrace::null()),
- receive_port_create_function_(Function::null()),
- lookup_receive_port_function_(Function::null()),
+ lookup_port_handler_(Function::null()),
handle_message_function_(Function::null()) {
}

Powered by Google App Engine
This is Rietveld 408576698