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

Unified Diff: vm/isolate.h

Issue 8673002: - Refactor the isolate callback mechanism to also include creation of the (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
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
« no previous file with comments | « vm/dart_api_impl_test.cc ('k') | vm/isolate.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: vm/isolate.h
===================================================================
--- vm/isolate.h (revision 1955)
+++ vm/isolate.h (working copy)
@@ -218,8 +218,8 @@
library_tag_handler_ = value;
}
- static void SetInitCallback(Dart_IsolateInitCallback callback);
- static Dart_IsolateInitCallback InitCallback();
+ static void SetCreateCallback(Dart_IsolateCreateCallback cback);
+ static Dart_IsolateCreateCallback CreateCallback();
uword stack_limit_address() const {
return reinterpret_cast<uword>(&stack_limit_);
@@ -288,7 +288,7 @@
uword stack_limit_on_overflow_exception_;
intptr_t ast_node_id_;
- static Dart_IsolateInitCallback init_callback_;
+ static Dart_IsolateCreateCallback create_callback_;
DISALLOW_COPY_AND_ASSIGN(Isolate);
};
« no previous file with comments | « vm/dart_api_impl_test.cc ('k') | vm/isolate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698