diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-12-12 01:53:28 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-12-12 01:53:28 +0000 |
commit | 909fa2daa49e5439c595e3d17a76f0e05d7934b0 (patch) | |
tree | 7dac1ee220b8e0968ff42cedf53775b1ca5a62ac /fxjs/cjs_field.cpp | |
parent | 5e99d62f4d92531833daeb062073d805bf363df3 (diff) | |
download | pdfium-909fa2daa49e5439c595e3d17a76f0e05d7934b0.tar.xz |
[js] Convert to using size instead of sentinels
This CL changes the DefineMethod, DefineProps and DefineConsts methods
to pass a size instead of depending on a sentinel value in the
definition arrays.
Change-Id: Ie054544124290c0833a8b21af175a203ca99591a
Reviewed-on: https://pdfium-review.googlesource.com/20551
Commit-Queue: dsinclair <dsinclair@chromium.org>
Reviewed-by: Lei Zhang <thestig@chromium.org>
Diffstat (limited to 'fxjs/cjs_field.cpp')
-rw-r--r-- | fxjs/cjs_field.cpp | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/fxjs/cjs_field.cpp b/fxjs/cjs_field.cpp index cb8eb6bfcb..f2e27f2477 100644 --- a/fxjs/cjs_field.cpp +++ b/fxjs/cjs_field.cpp @@ -124,8 +124,7 @@ const JSPropertySpec CJS_Field::PropertySpecs[] = { {"userName", get_user_name_static, set_user_name_static}, {"value", get_value_static, set_value_static}, {"valueAsString", get_value_as_string_static, set_value_as_string_static}, - {"source", get_source_static, set_source_static}, - {0, 0, 0}}; + {"source", get_source_static, set_source_static}}; const JSMethodSpec CJS_Field::MethodSpecs[] = { {"browseForFileToSubmit", browseForFileToSubmit_static}, @@ -153,8 +152,7 @@ const JSMethodSpec CJS_Field::MethodSpecs[] = { {"signatureInfo", signatureInfo_static}, {"signatureSetSeedValue", signatureSetSeedValue_static}, {"signatureSign", signatureSign_static}, - {"signatureValidate", signatureValidate_static}, - {0, 0}}; + {"signatureValidate", signatureValidate_static}}; int CJS_Field::ObjDefnID = -1; @@ -168,8 +166,8 @@ void CJS_Field::DefineJSObjects(CFXJS_Engine* pEngine) { ObjDefnID = pEngine->DefineObj("Field", FXJSOBJTYPE_DYNAMIC, JSConstructor<CJS_Field, Field>, JSDestructor<CJS_Field>); - DefineProps(pEngine, ObjDefnID, PropertySpecs); - DefineMethods(pEngine, ObjDefnID, MethodSpecs); + DefineProps(pEngine, ObjDefnID, PropertySpecs, FX_ArraySize(PropertySpecs)); + DefineMethods(pEngine, ObjDefnID, MethodSpecs, FX_ArraySize(MethodSpecs)); } void CJS_Field::InitInstance(IJS_Runtime* pIRuntime) {} |