diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-10-26 16:48:30 -0400 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-10-26 21:02:17 +0000 |
commit | ef299534cce8cc42f1bd13665a75947c88195ce0 (patch) | |
tree | 92e97b4f19dc7d8bdae7c0f43b549ad9d49bcdc4 /fpdfsdk/javascript/Field.h | |
parent | 15776cf22182e74d8546849780ec0cf61b96ca95 (diff) | |
download | pdfium-ef299534cce8cc42f1bd13665a75947c88195ce0.tar.xz |
Cleanup statics in JS classes
This CL removes the static object IDs from each of the CJS_Object
subclasses and moves them to anonymous namespaces. The Spec arrays are
moved to private members of the object classes.
Change-Id: I5dcdb87ef57e4b374b5431580fb55cb75023f8fb
Reviewed-on: https://pdfium-review.googlesource.com/16950
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'fpdfsdk/javascript/Field.h')
-rw-r--r-- | fpdfsdk/javascript/Field.h | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/fpdfsdk/javascript/Field.h b/fpdfsdk/javascript/Field.h index 11b6e7e9fe..1bfd44eef1 100644 --- a/fpdfsdk/javascript/Field.h +++ b/fpdfsdk/javascript/Field.h @@ -359,17 +359,14 @@ class Field : public CJS_EmbedObj { class CJS_Field : public CJS_Object { public: + static int GetObjDefnID(); + static void DefineJSObjects(CFXJS_Engine* pEngine, FXJSOBJTYPE eObjType); + explicit CJS_Field(v8::Local<v8::Object> pObject) : CJS_Object(pObject) {} ~CJS_Field() override {} void InitInstance(IJS_Runtime* pIRuntime) override; - static int g_nObjDefnID; - static JSPropertySpec PropertySpecs[]; - static JSMethodSpec MethodSpecs[]; - - static void DefineJSObjects(CFXJS_Engine* pEngine, FXJSOBJTYPE eObjType); - JS_STATIC_PROP(alignment, alignment, Field); JS_STATIC_PROP(borderStyle, border_style, Field); JS_STATIC_PROP(buttonAlignX, button_align_x, Field); @@ -449,6 +446,11 @@ class CJS_Field : public CJS_Object { JS_STATIC_METHOD(signatureSetSeedValue, Field); JS_STATIC_METHOD(signatureSign, Field); JS_STATIC_METHOD(signatureValidate, Field); + + private: + static int ObjDefnID; + static JSPropertySpec PropertySpecs[]; + static JSMethodSpec MethodSpecs[]; }; #endif // FPDFSDK_JAVASCRIPT_FIELD_H_ |