diff options
author | Tom Sepez <tsepez@chromium.org> | 2015-10-09 13:14:47 -0700 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2015-10-09 13:14:47 -0700 |
commit | 848a13b6777cbff8cc4aea3ab3d69eaa0b82ae6c (patch) | |
tree | d2c3a5ee4f67227ac33199f6d10caaf204c92896 /fpdfsdk/src/javascript/global.h | |
parent | f1c713663192368d26031a4caed1f9705f4510af (diff) | |
download | pdfium-848a13b6777cbff8cc4aea3ab3d69eaa0b82ae6c.tar.xz |
Pass IJS_Runtime, not IJS_Context, to native object constructors.
This better separates the two IJS_ classes, with the IJS_Context
taking on its proper role of describing an event. There's no need
for the event details for object creation, so this gets much
cleaner.
Move some JS error reporting code from CJS_Context to CJS_Runtime.
Make InitInstance() and ExitInstance() voids, they always return
TRUE and we never check the result anyways.
R=thestig@chromium.org
Review URL: https://codereview.chromium.org/1389163007 .
Diffstat (limited to 'fpdfsdk/src/javascript/global.h')
-rw-r--r-- | fpdfsdk/src/javascript/global.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fpdfsdk/src/javascript/global.h b/fpdfsdk/src/javascript/global.h index 30f5d07b31..174e63a760 100644 --- a/fpdfsdk/src/javascript/global.h +++ b/fpdfsdk/src/javascript/global.h @@ -82,7 +82,7 @@ class CJS_Global : public CJS_Object { ~CJS_Global() override {} // CJS_Object - FX_BOOL InitInstance(IJS_Context* cc) override; + void InitInstance(IJS_Runtime* pIRuntime) override; DECLARE_SPECIAL_JS_CLASS(); JS_SPECIAL_STATIC_METHOD(setPersistent, JSGlobalAlternate, global); |