Index: fpdfsdk/include/jsapi/fxjs_v8.h |
diff --git a/fpdfsdk/include/jsapi/fxjs_v8.h b/fpdfsdk/include/jsapi/fxjs_v8.h |
index 651414b53b58a811137681062143d966b5124329..13fbb02a72ccc3575821b422e7fb02f7da65206d 100644 |
--- a/fpdfsdk/include/jsapi/fxjs_v8.h |
+++ b/fpdfsdk/include/jsapi/fxjs_v8.h |
@@ -17,10 +17,10 @@ |
#include <v8.h> |
#include "../../../core/include/fxcrt/fx_basic.h" |
-// FXJS_V8 places no interpretation on these two classes; it merely |
-// passes them on to the caller-provided FXJS_CONSTRUCTORs. |
-class IJS_Context; |
-class IJS_Runtime; |
+// FXJS_V8 places no restrictions on these two classes; it merely passes them |
+// on to caller-provided methods. |
+class IJS_Context; // A description of the event that caused JS execution. |
+class IJS_Runtime; // A native runtime, typically owns the v8::Context. |
enum FXJSOBJTYPE { |
FXJSOBJTYPE_DYNAMIC = 0, // Created by native method and returned to JS. |
@@ -61,7 +61,7 @@ class FXJS_ArrayBufferAllocator : public v8::ArrayBuffer::Allocator { |
void Free(void* data, size_t length) override; |
}; |
-using FXJS_CONSTRUCTOR = void (*)(IJS_Context* cc, v8::Local<v8::Object> obj); |
+using FXJS_CONSTRUCTOR = void (*)(IJS_Runtime* cc, v8::Local<v8::Object> obj); |
using FXJS_DESTRUCTOR = void (*)(v8::Local<v8::Object> obj); |
// Call before making FXJS_PrepareIsolate call. |
@@ -119,8 +119,7 @@ void FXJS_DefineGlobalConst(v8::Isolate* pIsolate, |
// Called after FXJS_Define* calls made. |
void FXJS_InitializeRuntime(v8::Isolate* pIsolate, |
- IJS_Runtime* pFXRuntime, |
- IJS_Context* context, |
+ IJS_Runtime* pIRuntime, |
v8::Global<v8::Context>& v8PersistentContext); |
void FXJS_ReleaseRuntime(v8::Isolate* pIsolate, |
v8::Global<v8::Context>& v8PersistentContext); |
@@ -130,11 +129,10 @@ IJS_Runtime* FXJS_GetRuntimeFromIsolate(v8::Isolate* pIsolate); |
int FXJS_Execute(v8::Isolate* pIsolate, |
IJS_Context* pJSContext, |
const wchar_t* script, |
- long length, |
FXJSErr* perror); |
v8::Local<v8::Object> FXJS_NewFxDynamicObj(v8::Isolate* pIsolate, |
- IJS_Context* pJSContext, |
+ IJS_Runtime* pJSContext, |
int nObjDefnID); |
v8::Local<v8::Object> FXJS_GetThisObj(v8::Isolate* pIsolate); |
int FXJS_GetObjDefnID(v8::Local<v8::Object> pObj); |