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

Unified Diff: runtime/vm/object_store.h

Issue 573293004: Fix issue 17514770 (https://b2.corp.google.com/issues/17514770) (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: 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/object.cc ('k') | runtime/vm/object_store.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/object_store.h
===================================================================
--- runtime/vm/object_store.h (revision 40420)
+++ runtime/vm/object_store.h (working copy)
@@ -435,6 +435,16 @@
return OFFSET_OF(ObjectStore, default_tag_);
}
+ RawArray* library_load_error_table() const {
+ return library_load_error_table_;
+ }
+ void set_library_load_error_table(const Array& table) {
+ library_load_error_table_ = table.raw();
+ }
+ static intptr_t library_load_error_table_offset() {
+ return OFFSET_OF(ObjectStore, library_load_error_table_);
+ }
+
// Visit all object pointers.
void VisitObjectPointers(ObjectPointerVisitor* visitor);
@@ -522,9 +532,10 @@
RawStacktrace* preallocated_stack_trace_;
RawFunction* lookup_port_handler_;
RawFunction* handle_message_function_;
+ RawArray* library_load_error_table_;
RawUserTag* default_tag_;
RawObject** to() {
- return reinterpret_cast<RawObject**>(&handle_message_function_);
+ return reinterpret_cast<RawObject**>(&library_load_error_table_);
}
friend class SnapshotReader;
« no previous file with comments | « runtime/vm/object.cc ('k') | runtime/vm/object_store.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698