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

Unified Diff: vm/isolate.cc

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/isolate.h ('k') | vm/isolate_linux.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: vm/isolate.cc
===================================================================
--- vm/isolate.cc (revision 1955)
+++ vm/isolate.cc (working copy)
@@ -230,16 +230,16 @@
}
-Dart_IsolateInitCallback Isolate::init_callback_ = NULL;
+Dart_IsolateCreateCallback Isolate::create_callback_ = NULL;
-void Isolate::SetInitCallback(Dart_IsolateInitCallback callback) {
- init_callback_ = callback;
+void Isolate::SetCreateCallback(Dart_IsolateCreateCallback cb) {
+ create_callback_ = cb;
}
-Dart_IsolateInitCallback Isolate::InitCallback() {
- return init_callback_;
+Dart_IsolateCreateCallback Isolate::CreateCallback() {
+ return create_callback_;
}
« no previous file with comments | « vm/isolate.h ('k') | vm/isolate_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698