| Index: src/bootstrapper.cc
|
| diff --git a/src/bootstrapper.cc b/src/bootstrapper.cc
|
| index 764c8462f870665ea87348c8f9f10a1c04d59cfc..58b115d82840a96d9b610b26be3e5a164e13fc59 100644
|
| --- a/src/bootstrapper.cc
|
| +++ b/src/bootstrapper.cc
|
| @@ -98,7 +98,7 @@ Handle<String> Bootstrapper::NativesSourceLookup(int index) {
|
|
|
|
|
| void Bootstrapper::Initialize(bool create_heap_objects) {
|
| - extensions_cache_.Initialize(create_heap_objects);
|
| + extensions_cache_.Initialize(isolate_, create_heap_objects);
|
| }
|
|
|
|
|
| @@ -147,7 +147,7 @@ void Bootstrapper::TearDown() {
|
| delete_these_arrays_on_tear_down_ = NULL;
|
| }
|
|
|
| - extensions_cache_.Initialize(false); // Yes, symmetrical
|
| + extensions_cache_.Initialize(isolate_, false); // Yes, symmetrical
|
| }
|
|
|
|
|
|
|