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

Unified Diff: runtime/bin/isolate_data.h

Issue 2837873005: Fix some assertion failures on Fuchsia (Closed)
Patch Set: Created 3 years, 8 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/bin/gen_snapshot.cc ('k') | runtime/bin/loader.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/isolate_data.h
diff --git a/runtime/bin/isolate_data.h b/runtime/bin/isolate_data.h
index 86059fb6b839b0978d22d93ce20d0167ab5a9d24..6a71fc2fadd01dc591b9a69dd6fef1f8c54f4477 100644
--- a/runtime/bin/isolate_data.h
+++ b/runtime/bin/isolate_data.h
@@ -68,7 +68,10 @@ class IsolateData {
return loader_;
}
void set_loader(Loader* loader) {
+#ifndef TARGET_OS_FUCHSIA
zra 2017/04/26 15:52:20 #if !defined(TARGET_OS_FUCHSIA)
+ // TODO(29458): Enable on Fuchsia.
ASSERT((loader_ == NULL) || (loader == NULL));
+#endif
loader_ = loader;
}
MallocGrowableArray<char*>* dependencies() const { return dependencies_; }
« no previous file with comments | « runtime/bin/gen_snapshot.cc ('k') | runtime/bin/loader.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698