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/Icon.cpp | |
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/Icon.cpp')
-rw-r--r-- | fpdfsdk/javascript/Icon.cpp | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/fpdfsdk/javascript/Icon.cpp b/fpdfsdk/javascript/Icon.cpp index 7a0c758d15..ffb9b81011 100644 --- a/fpdfsdk/javascript/Icon.cpp +++ b/fpdfsdk/javascript/Icon.cpp @@ -14,12 +14,18 @@ JSPropertySpec CJS_Icon::PropertySpecs[] = { {"name", get_name_static, set_name_static}, {0, 0, 0}}; -int CJS_Icon::g_nObjDefnID = -1; +int CJS_Icon::ObjDefnID = -1; +// static +int CJS_Icon::GetObjDefnID() { + return ObjDefnID; +} + +// static void CJS_Icon::DefineJSObjects(CFXJS_Engine* pEngine, FXJSOBJTYPE eObjType) { - g_nObjDefnID = pEngine->DefineObj( + ObjDefnID = pEngine->DefineObj( "Icon", eObjType, JSConstructor<CJS_Icon, Icon>, JSDestructor<CJS_Icon>); - DefineProps(pEngine, g_nObjDefnID, PropertySpecs); + DefineProps(pEngine, ObjDefnID, PropertySpecs); } Icon::Icon(CJS_Object* pJSObject) |