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

Unified Diff: src/isolate.cc

Issue 4888002: [Isolates] Pass isolate to VMState constructor. (Closed)
Patch Set: Created 10 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
« no previous file with comments | « src/isolate.h ('k') | src/log.h » ('j') | src/top.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/isolate.cc
diff --git a/src/isolate.cc b/src/isolate.cc
index cfb088208fd43c864c22390ece698e1d1eb164f6..6cd6cae1ef940b3d43148b424218addf79c16008 100644
--- a/src/isolate.cc
+++ b/src/isolate.cc
@@ -576,7 +576,7 @@ bool Isolate::PreInit() {
scanner_character_classes_ = new ScannerCharacterClasses();
pc_to_code_cache_ = new PcToCodeCache(this);
write_input_buffer_ = new StringInputBuffer();
- global_handles_ = new GlobalHandles();
+ global_handles_ = new GlobalHandles(this);
bootstrapper_ = new Bootstrapper();
cpu_features_ = new CpuFeatures();
handle_scope_implementer_ = new HandleScopeImplementer();
« no previous file with comments | « src/isolate.h ('k') | src/log.h » ('j') | src/top.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698