Index: fpdfsdk/src/javascript/JS_Runtime.cpp |
diff --git a/fpdfsdk/src/javascript/JS_Runtime.cpp b/fpdfsdk/src/javascript/JS_Runtime.cpp |
index 4ef34a8d2058800271af5a1cbb93e7e3ce256a8e..e3b3ed0f497c44bd120adf2c83d8367bd61180a5 100644 |
--- a/fpdfsdk/src/javascript/JS_Runtime.cpp |
+++ b/fpdfsdk/src/javascript/JS_Runtime.cpp |
@@ -116,7 +116,7 @@ CJS_Runtime::CJS_Runtime(CPDFDoc_Environment* pApp) |
InitJSObjects(); |
CJS_Context* pContext = (CJS_Context*)NewContext(); |
- JS_InitialRuntime(*this, this, pContext, m_context); |
+ JS_InitialRuntime(GetIsolate(), this, pContext, m_context); |
ReleaseContext(pContext); |
} |
@@ -125,9 +125,7 @@ CJS_Runtime::~CJS_Runtime() { |
delete m_ContextArray.GetAt(i); |
m_ContextArray.RemoveAll(); |
- |
- JS_ReleaseRuntime(*this, m_context); |
- |
+ JS_ReleaseRuntime(GetIsolate(), m_context); |
RemoveEventsInLoop(m_pFieldEventPath); |
m_pApp = NULL; |
@@ -145,59 +143,59 @@ FX_BOOL CJS_Runtime::InitJSObjects() { |
v8::Local<v8::Context> context = v8::Context::New(GetIsolate()); |
v8::Context::Scope context_scope(context); |
// 0 - 8 |
- if (CJS_Border::Init(*this, JS_STATIC) < 0) |
+ if (CJS_Border::Init(GetIsolate(), JS_STATIC) < 0) |
return FALSE; |
- if (CJS_Display::Init(*this, JS_STATIC) < 0) |
+ if (CJS_Display::Init(GetIsolate(), JS_STATIC) < 0) |
return FALSE; |
- if (CJS_Font::Init(*this, JS_STATIC) < 0) |
+ if (CJS_Font::Init(GetIsolate(), JS_STATIC) < 0) |
return FALSE; |
- if (CJS_Highlight::Init(*this, JS_STATIC) < 0) |
+ if (CJS_Highlight::Init(GetIsolate(), JS_STATIC) < 0) |
return FALSE; |
- if (CJS_Position::Init(*this, JS_STATIC) < 0) |
+ if (CJS_Position::Init(GetIsolate(), JS_STATIC) < 0) |
return FALSE; |
- if (CJS_ScaleHow::Init(*this, JS_STATIC) < 0) |
+ if (CJS_ScaleHow::Init(GetIsolate(), JS_STATIC) < 0) |
return FALSE; |
- if (CJS_ScaleWhen::Init(*this, JS_STATIC) < 0) |
+ if (CJS_ScaleWhen::Init(GetIsolate(), JS_STATIC) < 0) |
return FALSE; |
- if (CJS_Style::Init(*this, JS_STATIC) < 0) |
+ if (CJS_Style::Init(GetIsolate(), JS_STATIC) < 0) |
return FALSE; |
- if (CJS_Zoomtype::Init(*this, JS_STATIC) < 0) |
+ if (CJS_Zoomtype::Init(GetIsolate(), JS_STATIC) < 0) |
return FALSE; |
// 9 - 11 |
- if (CJS_App::Init(*this, JS_STATIC) < 0) |
+ if (CJS_App::Init(GetIsolate(), JS_STATIC) < 0) |
return FALSE; |
- if (CJS_Color::Init(*this, JS_STATIC) < 0) |
+ if (CJS_Color::Init(GetIsolate(), JS_STATIC) < 0) |
return FALSE; |
- if (CJS_Console::Init(*this, JS_STATIC) < 0) |
+ if (CJS_Console::Init(GetIsolate(), JS_STATIC) < 0) |
return FALSE; |
// 12 - 14 |
- if (CJS_Document::Init(*this, JS_DYNAMIC) < 0) |
+ if (CJS_Document::Init(GetIsolate(), JS_DYNAMIC) < 0) |
return FALSE; |
- if (CJS_Event::Init(*this, JS_STATIC) < 0) |
+ if (CJS_Event::Init(GetIsolate(), JS_STATIC) < 0) |
return FALSE; |
- if (CJS_Field::Init(*this, JS_DYNAMIC) < 0) |
+ if (CJS_Field::Init(GetIsolate(), JS_DYNAMIC) < 0) |
return FALSE; |
// 15 - 17 |
- if (CJS_Global::Init(*this, JS_STATIC) < 0) |
+ if (CJS_Global::Init(GetIsolate(), JS_STATIC) < 0) |
return FALSE; |
- if (CJS_Icon::Init(*this, JS_DYNAMIC) < 0) |
+ if (CJS_Icon::Init(GetIsolate(), JS_DYNAMIC) < 0) |
return FALSE; |
- if (CJS_Util::Init(*this, JS_STATIC) < 0) |
+ if (CJS_Util::Init(GetIsolate(), JS_STATIC) < 0) |
return FALSE; |
- if (CJS_PublicMethods::Init(*this) < 0) |
+ if (CJS_PublicMethods::Init(GetIsolate()) < 0) |
return FALSE; |
- if (CJS_GlobalConsts::Init(*this) < 0) |
+ if (CJS_GlobalConsts::Init(GetIsolate()) < 0) |
return FALSE; |
- if (CJS_GlobalArrays::Init(*this) < 0) |
+ if (CJS_GlobalArrays::Init(GetIsolate()) < 0) |
return FALSE; |
- if (CJS_TimerObj::Init(*this, JS_DYNAMIC) < 0) |
+ if (CJS_TimerObj::Init(GetIsolate(), JS_DYNAMIC) < 0) |
return FALSE; |
- if (CJS_PrintParamsObj::Init(*this, JS_DYNAMIC) < 0) |
+ if (CJS_PrintParamsObj::Init(GetIsolate(), JS_DYNAMIC) < 0) |
return FALSE; |
return TRUE; |
@@ -236,20 +234,17 @@ void CJS_Runtime::SetReaderDocument(CPDFSDK_Document* pReaderDoc) { |
v8::Context::Scope context_scope(context); |
m_pDocument = pReaderDoc; |
- |
if (pReaderDoc) { |
- JSObject pThis = JS_GetThisObj(*this); |
+ v8::Local<v8::Object> pThis = JS_GetThisObj(GetIsolate()); |
if (!pThis.IsEmpty()) { |
- if (JS_GetObjDefnID(pThis) == JS_GetObjDefnID(*this, L"Document")) { |
+ if (JS_GetObjDefnID(pThis) == |
+ JS_GetObjDefnID(GetIsolate(), L"Document")) { |
if (CJS_Document* pJSDocument = (CJS_Document*)JS_GetPrivate(pThis)) { |
if (Document* pDocument = (Document*)pJSDocument->GetEmbedObject()) |
pDocument->AttachDoc(pReaderDoc); |
} |
} |
} |
- JS_SetThisObj(*this, JS_GetObjDefnID(*this, L"Document")); |
- } else { |
- JS_SetThisObj(*this, JS_GetObjDefnID(*this, L"app")); |
} |
} |
} |