diff options
author | Tom Sepez <tsepez@chromium.org> | 2018-02-01 22:06:21 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-02-01 22:06:21 +0000 |
commit | 59790cef1a09565e8b6799141cf45455ef2dc752 (patch) | |
tree | 6d4aa8bcb68ac79360c386c37b7d368854d5e313 /fxjs/cfxjse_context.h | |
parent | 270283669b1f53edfce8b96a579e973c5de5f205 (diff) | |
download | pdfium-59790cef1a09565e8b6799141cf45455ef2dc752.tar.xz |
Make CFXJSE-created contexts refer to their CFXJS counteparts.chromium/3337
Bug: 773229
Change-Id: Ic3774c7f6abe3a195bbe09b91d91c549d4d7ac46
Reviewed-on: https://pdfium-review.googlesource.com/25110
Reviewed-by: dsinclair <dsinclair@chromium.org>
Commit-Queue: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'fxjs/cfxjse_context.h')
-rw-r--r-- | fxjs/cfxjse_context.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fxjs/cfxjse_context.h b/fxjs/cfxjse_context.h index c6949fc850..0f4c97a0ae 100644 --- a/fxjs/cfxjse_context.h +++ b/fxjs/cfxjse_context.h @@ -13,6 +13,7 @@ #include "fxjs/fxjse.h" #include "v8/include/v8.h" +class CFXJS_Engine; class CFXJSE_Class; class CFXJSE_Value; struct FXJSE_CLASS_DESCRIPTOR; @@ -21,6 +22,7 @@ class CFXJSE_Context { public: static std::unique_ptr<CFXJSE_Context> Create( v8::Isolate* pIsolate, + CFXJS_Engine* pOptionalEngineToSet, const FXJSE_CLASS_DESCRIPTOR* pGlobalClass, CFXJSE_HostObject* pGlobalObject); |