diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-10-26 12:21:28 -0400 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-10-26 18:42:28 +0000 |
commit | 89d26c8ccf336b4f46da2de140313918f2a4ffdf (patch) | |
tree | 907130e47e510c7158735c41904bfba21de3f788 /fpdfsdk/javascript/Document.h | |
parent | 3a1ba8efdbfffad723646dd878e6ca511f9f75bd (diff) | |
download | pdfium-89d26c8ccf336b4f46da2de140313918f2a4ffdf.tar.xz |
Remove JS macros
This CL removes the JS macros and inlines the code directly into the
requisite classes.
Change-Id: I514ca025be42cd46b041b4af271f7b1d1067ab42
Reviewed-on: https://pdfium-review.googlesource.com/16890
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'fpdfsdk/javascript/Document.h')
-rw-r--r-- | fpdfsdk/javascript/Document.h | 24 |
1 files changed, 22 insertions, 2 deletions
diff --git a/fpdfsdk/javascript/Document.h b/fpdfsdk/javascript/Document.h index 18469b0ae6..3c6c388e0a 100644 --- a/fpdfsdk/javascript/Document.h +++ b/fpdfsdk/javascript/Document.h @@ -38,7 +38,17 @@ class CJS_PrintParamsObj : public CJS_Object { : CJS_Object(pObject) {} ~CJS_PrintParamsObj() override {} - DECLARE_JS_CLASS(); + 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[]; }; struct CJS_AnnotObj; @@ -269,7 +279,17 @@ class CJS_Document : public CJS_Object { // CJS_Object void InitInstance(IJS_Runtime* pIRuntime) override; - DECLARE_JS_CLASS(); + 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[]; JS_STATIC_PROP(ADBE, ADBE, Document); JS_STATIC_PROP(author, author, Document); |