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

Unified Diff: runtime/vm/object_store.h

Issue 9422019: isolates refactor: this change introduces 'dart:isolate' as a library. This is a (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: '' Created 8 years, 10 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/snapshot_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/object_store.h
diff --git a/runtime/vm/object_store.h b/runtime/vm/object_store.h
index f12410001b65d481a4a221039c7291f018110a3d..8f7365fa0ff69639960bd067a611c0cee4e0fc1a 100644
--- a/runtime/vm/object_store.h
+++ b/runtime/vm/object_store.h
@@ -247,6 +247,14 @@ class ObjectStore {
core_impl_library_ = value.raw();
}
+ RawLibrary* isolate_library() const {
+ return isolate_library_;
+ }
+
+ void set_isolate_library(const Library& value) {
+ isolate_library_ = value.raw();
+ }
+
RawLibrary* native_wrappers_library() const {
return native_wrappers_library_;
}
@@ -358,6 +366,7 @@ class ObjectStore {
RawArray* canonical_type_arguments_;
RawLibrary* core_library_;
RawLibrary* core_impl_library_;
+ RawLibrary* isolate_library_;
RawLibrary* native_wrappers_library_;
RawLibrary* root_library_;
RawLibrary* registered_libraries_;
« no previous file with comments | « runtime/vm/object.cc ('k') | runtime/vm/snapshot_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698