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

Unified Diff: vm/object_store.h

Issue 8537023: Implement automatic loading of dart:core_native_fields library (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
Index: vm/object_store.h
===================================================================
--- vm/object_store.h (revision 1595)
+++ vm/object_store.h (working copy)
@@ -191,6 +191,13 @@
core_impl_library_ = value.raw();
}
+ RawLibrary* native_wrappers_library() const {
+ return native_wrappers_library_;
+ }
+ void set_native_wrappers_library(const Library& value) {
+ native_wrappers_library_ = value.raw();
+ }
+
RawLibrary* root_library() const { return root_library_; }
void set_root_library(const Library& value) {
root_library_ = value.raw();
@@ -273,6 +280,7 @@
RawArray* symbol_table_;
RawLibrary* core_library_;
RawLibrary* core_impl_library_;
+ RawLibrary* native_wrappers_library_;
RawLibrary* root_library_;
RawLibrary* registered_libraries_;
RawArray* pending_classes_;

Powered by Google App Engine
This is Rietveld 408576698