Index: fpdfsdk/src/javascript/app.cpp |
diff --git a/fpdfsdk/src/javascript/app.cpp b/fpdfsdk/src/javascript/app.cpp |
index 93a627c97acf01bddaa5c0b966e13984a66dc5b7..23c9292d2ff93031fd2820162d6349d002fd75e3 100644 |
--- a/fpdfsdk/src/javascript/app.cpp |
+++ b/fpdfsdk/src/javascript/app.cpp |
@@ -123,7 +123,7 @@ FX_BOOL app::activeDocs(IJS_Context* cc, |
(CJS_Document*)FXJS_GetPrivate(pRuntime->GetIsolate(), pObj); |
} else { |
v8::Local<v8::Object> pObj = FXJS_NewFxDynamicObj( |
- pRuntime->GetIsolate(), pContext, CJS_Document::g_nObjDefnID); |
+ pRuntime->GetIsolate(), pRuntime, CJS_Document::g_nObjDefnID); |
pJSDocument = |
(CJS_Document*)FXJS_GetPrivate(pRuntime->GetIsolate(), pObj); |
ASSERT(pJSDocument != NULL); |
@@ -402,7 +402,7 @@ FX_BOOL app::setInterval(IJS_Context* cc, |
m_aTimer.Add(pTimer); |
v8::Local<v8::Object> pRetObj = FXJS_NewFxDynamicObj( |
- pRuntime->GetIsolate(), pContext, CJS_TimerObj::g_nObjDefnID); |
+ pRuntime->GetIsolate(), pRuntime, CJS_TimerObj::g_nObjDefnID); |
CJS_TimerObj* pJS_TimerObj = |
(CJS_TimerObj*)FXJS_GetPrivate(pRuntime->GetIsolate(), pRetObj); |
TimerObj* pTimerObj = (TimerObj*)pJS_TimerObj->GetEmbedObject(); |
@@ -443,7 +443,7 @@ FX_BOOL app::setTimeOut(IJS_Context* cc, |
m_aTimer.Add(pTimer); |
v8::Local<v8::Object> pRetObj = FXJS_NewFxDynamicObj( |
- pRuntime->GetIsolate(), pContext, CJS_TimerObj::g_nObjDefnID); |
+ pRuntime->GetIsolate(), pRuntime, CJS_TimerObj::g_nObjDefnID); |
CJS_TimerObj* pJS_TimerObj = |
(CJS_TimerObj*)FXJS_GetPrivate(pRuntime->GetIsolate(), pRetObj); |
TimerObj* pTimerObj = (TimerObj*)pJS_TimerObj->GetEmbedObject(); |