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

Unified Diff: runtime/bin/isolate_data.h

Issue 2810223003: Attempt 2 -- Fix updating packages map on reload and add a regression test (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 | « no previous file | 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 792f8935bebe860926c0667e8141947d3bd24780..86059fb6b839b0978d22d93ce20d0167ab5a9d24 100644
--- a/runtime/bin/isolate_data.h
+++ b/runtime/bin/isolate_data.h
@@ -53,6 +53,14 @@ class IsolateData {
char* packages_file;
uint8_t* udp_receive_buffer;
+ void UpdatePackagesFile(const char* packages_file_) {
+ if (packages_file != NULL) {
+ free(packages_file);
+ packages_file = NULL;
+ }
+ packages_file = strdup(packages_file_);
+ }
+
// While loading a loader is associated with the isolate.
bool HasLoader() const { return loader_ != NULL; }
Loader* loader() const {
« no previous file with comments | « no previous file | runtime/bin/loader.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698