summaryrefslogtreecommitdiff
path: root/fpdfsdk/include/jsapi
diff options
context:
space:
mode:
authorTom Sepez <tsepez@chromium.org>2015-09-28 09:06:03 -0700
committerTom Sepez <tsepez@chromium.org>2015-09-28 09:06:03 -0700
commita25fd09cd880ad82aea09a7ffffe3f8e5b121bbe (patch)
tree9053c919819d02ae9f120d9a08791c8d0467650f /fpdfsdk/include/jsapi
parent535bac01c2c09919958b155bc88921dd66a598c8 (diff)
downloadpdfium-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/include/jsapi')
-rw-r--r--fpdfsdk/include/jsapi/fxjs_v8.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/fpdfsdk/include/jsapi/fxjs_v8.h b/fpdfsdk/include/jsapi/fxjs_v8.h
index a1e3e59797..0b51332dbc 100644
--- a/fpdfsdk/include/jsapi/fxjs_v8.h
+++ b/fpdfsdk/include/jsapi/fxjs_v8.h
@@ -39,12 +39,10 @@ class FXJS_PerIsolateData {
static FXJS_PerIsolateData* Get(v8::Isolate* pIsolate);
CFX_PtrArray m_ObjectDefnArray;
- IFXJS_Runtime* m_pFXJSRuntime;
CFXJSE_RuntimeData* m_pFXJSERuntimeData;
protected:
- FXJS_PerIsolateData()
- : m_pFXJSRuntime(nullptr), m_pFXJSERuntimeData(nullptr) {}
+ FXJS_PerIsolateData() : m_pFXJSERuntimeData(nullptr) {}
};
extern const wchar_t kFXJSValueNameString[];