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

Unified Diff: vm/object_store.h

Issue 9614006: - Proper URI resolution when loading scripts from the standalone binary. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
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
Index: vm/object_store.h
===================================================================
--- vm/object_store.h (revision 4985)
+++ vm/object_store.h (working copy)
@@ -262,6 +262,13 @@
native_wrappers_library_ = value.raw();
}
+ RawLibrary* builtin_library() const {
+ return builtin_library_;
+ }
+ void set_builtin_library(const Library& value) {
+ builtin_library_ = value.raw();
+ }
+
RawLibrary* root_library() const { return root_library_; }
void set_root_library(const Library& value) {
root_library_ = value.raw();
@@ -374,6 +381,7 @@
RawLibrary* core_impl_library_;
RawLibrary* isolate_library_;
RawLibrary* native_wrappers_library_;
+ RawLibrary* builtin_library_;
RawLibrary* root_library_;
RawLibrary* registered_libraries_;
RawArray* pending_classes_;
« vm/dart_api_impl.cc ('K') | « vm/dart_api_impl.cc ('k') | vm/object_store.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698