diff options
author | Tom Sepez <tsepez@chromium.org> | 2015-09-28 09:06:03 -0700 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2015-09-28 09:06:03 -0700 |
commit | a25fd09cd880ad82aea09a7ffffe3f8e5b121bbe (patch) | |
tree | 9053c919819d02ae9f120d9a08791c8d0467650f /fpdfsdk/src | |
parent | 535bac01c2c09919958b155bc88921dd66a598c8 (diff) | |
download | pdfium-a25fd09cd880ad82aea09a7ffffe3f8e5b121bbe.tar.xz |
XFA: Pass IFXJS_Runtime via V8 contexts, not V8 isolates
This makes the XFA branch look more like the master. I suspect a patch
was lost during the intial XFA checkin.
R=jochen@chromium.org
Review URL: https://codereview.chromium.org/1366053003 .
Diffstat (limited to 'fpdfsdk/src')
-rw-r--r-- | fpdfsdk/src/jsapi/fxjs_v8.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fpdfsdk/src/jsapi/fxjs_v8.cpp b/fpdfsdk/src/jsapi/fxjs_v8.cpp index 1c9bb87883..d7868f1586 100644 --- a/fpdfsdk/src/jsapi/fxjs_v8.cpp +++ b/fpdfsdk/src/jsapi/fxjs_v8.cpp @@ -269,8 +269,8 @@ void FXJS_InitializeRuntime(v8::Isolate* pIsolate, v8::Context::Scope context_scope(v8Context); FXJS_PerIsolateData::SetUp(pIsolate); - FXJS_PerIsolateData* pData = FXJS_PerIsolateData::Get(pIsolate); - pData->m_pFXJSRuntime = pFXRuntime; + v8::Local<v8::External> ptr = v8::External::New(pIsolate, pFXRuntime); + v8Context->SetEmbedderData(1, ptr); int maxID = CFXJS_ObjDefinition::MaxID(pIsolate); for (int i = 0; i < maxID; ++i) { |