diff options
author | Tom Sepez <tsepez@chromium.org> | 2018-02-01 02:15:44 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-02-01 02:15:44 +0000 |
commit | f5ca90c00198c72488fd337ec8029a7f74b335b8 (patch) | |
tree | 8bd701cb4e662069470fc0ece5889823242f252e /fxjs/ijs_runtime.h | |
parent | 33c7ade187724c767fff74913cda63de182b0ce2 (diff) | |
download | pdfium-f5ca90c00198c72488fd337ec8029a7f74b335b8.tar.xz |
Rename some CJS / IJS names for clarity.
Prior cleanup before making FXJS/FXJSE share one v8 context.
Return CJS object rather than isolate in one place.
Use unique_ptr in one place.
Change-Id: I837ae4880368a6d72e59b38f37e06908e05c34bd
Reviewed-on: https://pdfium-review.googlesource.com/24950
Commit-Queue: dsinclair <dsinclair@chromium.org>
Reviewed-by: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'fxjs/ijs_runtime.h')
-rw-r--r-- | fxjs/ijs_runtime.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/fxjs/ijs_runtime.h b/fxjs/ijs_runtime.h index e649aada0c..9fe5d2fed8 100644 --- a/fxjs/ijs_runtime.h +++ b/fxjs/ijs_runtime.h @@ -7,6 +7,8 @@ #ifndef FXJS_IJS_RUNTIME_H_ #define FXJS_IJS_RUNTIME_H_ +#include <memory> + #include "core/fxcrt/fx_string.h" #include "core/fxcrt/fx_system.h" @@ -22,7 +24,8 @@ class IJS_Runtime { public: static void Initialize(unsigned int slot, void* isolate); static void Destroy(); - static IJS_Runtime* Create(CPDFSDK_FormFillEnvironment* pFormFillEnv); + static std::unique_ptr<IJS_Runtime> Create( + CPDFSDK_FormFillEnvironment* pFormFillEnv); virtual ~IJS_Runtime() {} virtual IJS_EventContext* NewEventContext() = 0; |