diff options
author | Tom Sepez <tsepez@chromium.org> | 2018-02-07 21:07:24 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-02-07 21:07:24 +0000 |
commit | 9ad9a5fc81a36ab406ff49408dd0814d350bbc7e (patch) | |
tree | ec46a8cbec08c17d5932bd330c4fd4b5baa2c180 /fxjs/fxjs_v8.h | |
parent | 161f992a81e400eeebba49387f174d836750d624 (diff) | |
download | pdfium-9ad9a5fc81a36ab406ff49408dd0814d350bbc7e.tar.xz |
Split creation of ordinary object and bound objects in FXJS.chromium/3343
One can be performed by the CJS_V8 layer, the other requires the
full FXJS mechanism. Avoids using -1 as a special case.
Change-Id: I4a14ccb6a7fea393f84b70a07ada03b1a83c7d36
Reviewed-on: https://pdfium-review.googlesource.com/25830
Reviewed-by: dsinclair <dsinclair@chromium.org>
Commit-Queue: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'fxjs/fxjs_v8.h')
-rw-r--r-- | fxjs/fxjs_v8.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fxjs/fxjs_v8.h b/fxjs/fxjs_v8.h index 3e8e861403..0592847bb2 100644 --- a/fxjs/fxjs_v8.h +++ b/fxjs/fxjs_v8.h @@ -176,7 +176,8 @@ class CFXJS_Engine : public CJS_V8 { int Execute(const WideString& script, FXJSErr* perror); v8::Local<v8::Object> GetThisObj(); - v8::Local<v8::Object> NewFxDynamicObj(int nObjDefnID, bool bStatic = false); + v8::Local<v8::Object> NewFXJSBoundObject(int nObjDefnID, + bool bStatic = false); // Native object binding. void SetObjectPrivate(v8::Local<v8::Object> pObj, |