diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-10-26 15:04:17 -0400 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-10-26 19:29:57 +0000 |
commit | d808dfd5ad8c4eae1f2ea58b9b54a7d4e45a649e (patch) | |
tree | 26b829d19be342d45fa47accd4a599fb2d5aa711 /fpdfsdk/javascript/cjs_global.h | |
parent | 977c2a048e02dd3a9563be0c2c6ee62435e134c1 (diff) | |
download | pdfium-d808dfd5ad8c4eae1f2ea58b9b54a7d4e45a649e.tar.xz |
Cleanup JS define methods
This CL moves DefineProps, DefineMethods and DefineConsts to the
CJS_Object and removes from the subclasses. The JSConstructor and
JSDestructor are moved to be templated static methods in JS_Defines.
Change-Id: Ibe5ee063a32ae2332b8affc843d97ee6da21f4ee
Reviewed-on: https://pdfium-review.googlesource.com/16930
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'fpdfsdk/javascript/cjs_global.h')
-rw-r--r-- | fpdfsdk/javascript/cjs_global.h | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/fpdfsdk/javascript/cjs_global.h b/fpdfsdk/javascript/cjs_global.h index 96788f7727..8174418eea 100644 --- a/fpdfsdk/javascript/cjs_global.h +++ b/fpdfsdk/javascript/cjs_global.h @@ -19,18 +19,13 @@ class CJS_Global : public CJS_Object { static const char* g_pClassName; static int g_nObjDefnID; - static void DefineJSObjects(CFXJS_Engine* pEngine, FXJSOBJTYPE eObjType); - static JSConstSpec ConstSpecs[]; - static void DefineConsts(CFXJS_Engine* pEngine); - - static void JSConstructor(CFXJS_Engine* pEngine, v8::Local<v8::Object> obj); - static void JSDestructor(CFXJS_Engine* pEngine, v8::Local<v8::Object> obj); - static void DefineProps(CFXJS_Engine* pEngine); - static void DefineMethods(CFXJS_Engine* pEngine); static JSPropertySpec PropertySpecs[]; static JSMethodSpec MethodSpecs[]; + static void DefineJSObjects(CFXJS_Engine* pEngine, FXJSOBJTYPE eObjType); + static void DefineAllProperties(CFXJS_Engine* pEngine); + static void queryprop_static( v8::Local<v8::String> property, const v8::PropertyCallbackInfo<v8::Integer>& info); @@ -41,7 +36,6 @@ class CJS_Global : public CJS_Object { const v8::PropertyCallbackInfo<v8::Value>& info); static void delprop_static(v8::Local<v8::String> property, const v8::PropertyCallbackInfo<v8::Boolean>& info); - static void DefineAllProperties(CFXJS_Engine* pEngine); static void setPersistent_static( const v8::FunctionCallbackInfo<v8::Value>& info); |