From ec3da5b821ed65c53eff1c78c2493afd7d933371 Mon Sep 17 00:00:00 2001 From: dsinclair Date: Wed, 25 May 2016 16:42:05 -0700 Subject: Rename FXJSE_HRUNTIME to v8::Isolate This CL renames all of the instances of FXJSE_HRUNTIME to be v8::Isolate* and updates the various varible names to match the new type. Review-Url: https://codereview.chromium.org/2010833002 --- fpdfsdk/fpdfxfa/fpdfxfa_app.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'fpdfsdk/fpdfxfa/fpdfxfa_app.cpp') diff --git a/fpdfsdk/fpdfxfa/fpdfxfa_app.cpp b/fpdfsdk/fpdfxfa/fpdfxfa_app.cpp index e91bdf1699..16efc0a1de 100644 --- a/fpdfsdk/fpdfxfa/fpdfxfa_app.cpp +++ b/fpdfsdk/fpdfxfa/fpdfxfa_app.cpp @@ -31,7 +31,7 @@ void CPDFXFA_App::ReleaseInstance() { CPDFXFA_App::CPDFXFA_App() : m_bJavaScriptInitialized(FALSE), m_pXFAApp(NULL), - m_hJSERuntime(NULL), + m_pIsolate(nullptr), m_csAppType(JS_STR_VIEWERTYPE_STANDARD), m_bOwnedRuntime(false) { m_pEnvList.RemoveAll(); @@ -42,22 +42,22 @@ CPDFXFA_App::~CPDFXFA_App() { m_pXFAApp = NULL; #ifdef PDF_ENABLE_XFA - FXJSE_Runtime_Release(m_hJSERuntime, m_bOwnedRuntime); - m_hJSERuntime = NULL; + FXJSE_Runtime_Release(m_pIsolate, m_bOwnedRuntime); + m_pIsolate = nullptr; FXJSE_Finalize(); BC_Library_Destory(); #endif } -FX_BOOL CPDFXFA_App::Initialize(FXJSE_HRUNTIME hRuntime) { +FX_BOOL CPDFXFA_App::Initialize(v8::Isolate* pIsolate) { #ifdef PDF_ENABLE_XFA BC_Library_Init(); FXJSE_Initialize(); - m_bOwnedRuntime = !hRuntime; - m_hJSERuntime = hRuntime ? hRuntime : FXJSE_Runtime_Create(); - if (!m_hJSERuntime) + m_bOwnedRuntime = !pIsolate; + m_pIsolate = pIsolate ? pIsolate : FXJSE_Runtime_Create(); + if (!m_pIsolate) return FALSE; m_pXFAApp = new CXFA_FFApp(this); -- cgit v1.2.3