diff options
author | Jochen Eisinger <jochen@chromium.org> | 2015-07-16 09:37:48 +0200 |
---|---|---|
committer | Jochen Eisinger <jochen@chromium.org> | 2015-07-16 09:37:48 +0200 |
commit | cc8b4d8763151f51c9fe71ce9b64b2a0d7ddcc88 (patch) | |
tree | fbb16c6ff6d7386dd4c532956d54232a9851a75a /fpdfsdk/include | |
parent | 281d1d293dab54cadd214e5a1c098583fbbe0788 (diff) | |
download | pdfium-cc8b4d8763151f51c9fe71ce9b64b2a0d7ddcc88.tar.xz |
Make v8 embedder data slot configurablechromium/2460chromium/2459chromium/2458
Chrome already uses 0 and 1.
BUG=none
R=tsepez@chromium.org
Review URL: https://codereview.chromium.org/1235303003 .
Diffstat (limited to 'fpdfsdk/include')
-rw-r--r-- | fpdfsdk/include/jsapi/fxjs_v8.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fpdfsdk/include/jsapi/fxjs_v8.h b/fpdfsdk/include/jsapi/fxjs_v8.h index f5d699287d..b4dac71561 100644 --- a/fpdfsdk/include/jsapi/fxjs_v8.h +++ b/fpdfsdk/include/jsapi/fxjs_v8.h @@ -63,7 +63,7 @@ int JS_DefineGlobalConst(IJS_Runtime* pJSRuntime, const wchar_t* sConstNa void JS_InitialRuntime(IJS_Runtime* pJSRuntime,IFXJS_Runtime* pFXRuntime, IFXJS_Context* context, v8::Global<v8::Context>& v8PersistentContext); void JS_ReleaseRuntime(IJS_Runtime* pJSRuntime, v8::Global<v8::Context>& v8PersistentContext); -void JS_Initial(); +void JS_Initial(unsigned int embedderDataSlot); void JS_Release(); int JS_Parse(IJS_Runtime* pJSRuntime, IFXJS_Context* pJSContext, const wchar_t* script, long length, FXJSErr* perror); int JS_Execute(IJS_Runtime* pJSRuntime, IFXJS_Context* pJSContext, const wchar_t* script, long length, FXJSErr* perror); |