| Index: fpdfsdk/include/jsapi/fxjs_v8.h
|
| diff --git a/fpdfsdk/include/jsapi/fxjs_v8.h b/fpdfsdk/include/jsapi/fxjs_v8.h
|
| index 0b51332dbcaa8a346bb3fa4d2dfbf9f8f95098f4..ed652942afd1d352d5efd988dcea0d065d406449 100644
|
| --- a/fpdfsdk/include/jsapi/fxjs_v8.h
|
| +++ b/fpdfsdk/include/jsapi/fxjs_v8.h
|
| @@ -74,10 +74,6 @@ void FXJS_Release();
|
| // as part of FXJS_ReleaseRuntime().
|
| void FXJS_PrepareIsolate(v8::Isolate* pIsolate);
|
|
|
| -// Call before making JS_PrepareIsolate call.
|
| -void JS_Initialize(unsigned int embedderDataSlot);
|
| -void JS_Release();
|
| -
|
| // Call before making JS_Define* calls. Resources allocated here are cleared
|
| // as part of JS_ReleaseRuntime().
|
| void JS_PrepareIsolate(v8::Isolate* pIsolate);
|
| @@ -122,6 +118,7 @@ void FXJS_InitializeRuntime(v8::Isolate* pIsolate,
|
| v8::Global<v8::Context>& v8PersistentContext);
|
| void FXJS_ReleaseRuntime(v8::Isolate* pIsolate,
|
| v8::Global<v8::Context>& v8PersistentContext);
|
| +IFXJS_Runtime* FXJS_GetRuntimeFromIsolate(v8::Isolate* pIsolate);
|
|
|
| // Called after FXJS_InitializeRuntime call made.
|
| int FXJS_Execute(v8::Isolate* pIsolate,
|
|
|