| Index: fpdfsdk/include/javascript/JS_Define.h
|
| diff --git a/fpdfsdk/include/javascript/JS_Define.h b/fpdfsdk/include/javascript/JS_Define.h
|
| index 7175ece367af6d3e0961462f4c0687f52703335a..0c2574d26da4385e07c36ed7a562f7043a7f1188 100644
|
| --- a/fpdfsdk/include/javascript/JS_Define.h
|
| +++ b/fpdfsdk/include/javascript/JS_Define.h
|
| @@ -128,7 +128,7 @@ void JSMethod(const char* method_name_string,
|
| JS_Error(isolate, JSFormatErrorString(class_name_string, method_name_string, sError));
|
| return;
|
| }
|
| - info.GetReturnValue().Set(valueRes.ToJSValue());
|
| + info.GetReturnValue().Set(valueRes.ToV8Value());
|
| }
|
|
|
| #define JS_STATIC_METHOD(method_name, class_name) \
|
| @@ -385,7 +385,7 @@ void JSGlobalFunc(const char *func_name_string,
|
| JS_Error(isolate, JSFormatErrorString(func_name_string, nullptr, sError));
|
| return;
|
| }
|
| - info.GetReturnValue().Set(valueRes.ToJSValue());
|
| + info.GetReturnValue().Set(valueRes.ToV8Value());
|
| }
|
|
|
| #define JS_STATIC_GLOBAL_FUN(fun_name) \
|
| @@ -433,7 +433,7 @@ for (int i=0; i<size; i++) array.SetElement(i,CJS_Value(pRuntime,ArrayContent[i]
|
| \
|
| CJS_PropValue prop(pRuntime);\
|
| prop << array;\
|
| -if (JS_DefineGlobalConst(pRuntime, (const wchar_t*)ArrayName, prop.ToJSValue()) < 0)\
|
| +if (JS_DefineGlobalConst(pRuntime, (const wchar_t*)ArrayName, prop.ToV8Value()) < 0)\
|
| return -1
|
|
|
| /* ============================================================ */
|
|
|