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

Unified Diff: runtime/vm/isolate.h

Issue 545483002: Per isolate package root. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fixed test. Created 6 years, 3 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/dart_api_impl_test.cc ('k') | runtime/vm/isolate.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/isolate.h
diff --git a/runtime/vm/isolate.h b/runtime/vm/isolate.h
index fee2ac74664688d910f0b8999eb33f751059dc71..6d9bee5b3443941f11851c06c4093b41d2c9d900 100644
--- a/runtime/vm/isolate.h
+++ b/runtime/vm/isolate.h
@@ -826,6 +826,7 @@ class IsolateSpawnState {
const Instance& message);
IsolateSpawnState(Dart_Port parent_port,
const char* script_url,
+ const char* package_root,
const Instance& args,
const Instance& message);
~IsolateSpawnState();
@@ -835,6 +836,7 @@ class IsolateSpawnState {
Dart_Port parent_port() const { return parent_port_; }
char* script_url() const { return script_url_; }
+ char* package_root() const { return package_root_; }
char* library_url() const { return library_url_; }
char* class_name() const { return class_name_; }
char* function_name() const { return function_name_; }
@@ -850,6 +852,7 @@ class IsolateSpawnState {
Isolate* isolate_;
Dart_Port parent_port_;
char* script_url_;
+ char* package_root_;
char* library_url_;
char* class_name_;
char* function_name_;
« no previous file with comments | « runtime/vm/dart_api_impl_test.cc ('k') | runtime/vm/isolate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698