gin: Make gin/ remember external reference table

https://chromium-review.googlesource.com/c/chromium/src/+/778741
This commit is contained in:
deepak1556 2018-04-12 15:32:43 +05:30 committed by Samuel Attard
parent 383b21e20a
commit ea7e273a06

View file

@ -56,7 +56,8 @@ bool JavascriptEnvironment::Initialize() {
new v8::TracingController());
gin::IsolateHolder::Initialize(
gin::IsolateHolder::kNonStrictMode, gin::IsolateHolder::kStableV8Extras,
gin::ArrayBufferAllocator::SharedInstance(), false);
gin::ArrayBufferAllocator::SharedInstance(),
nullptr /* external_reference_table */, false /* create_v8_platform */);
return true;
}