diff options
author | Tom Sepez <tsepez@chromium.org> | 2018-06-11 15:55:17 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-06-11 15:55:17 +0000 |
commit | 8b4ddebff061b199f14684f17cac8915bade8fb2 (patch) | |
tree | e8b1f18bec5c1377dfe5a0967e2e6f78c3df9812 /fxjs/cjs_object.h | |
parent | 9bc7a213b95439ab91183ac6684bf01e09ae60c1 (diff) | |
download | pdfium-8b4ddebff061b199f14684f17cac8915bade8fb2.tar.xz |
Use spans in CJS_Object.
Avoid explicitly having to count items in arrays.
Change-Id: I24a91db45e8a8530f38afcc273e824ffb70a6cb9
Reviewed-on: https://pdfium-review.googlesource.com/34710
Reviewed-by: dsinclair <dsinclair@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'fxjs/cjs_object.h')
-rw-r--r-- | fxjs/cjs_object.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/fxjs/cjs_object.h b/fxjs/cjs_object.h index c3766fc2c0..70682cd51e 100644 --- a/fxjs/cjs_object.h +++ b/fxjs/cjs_object.h @@ -14,6 +14,7 @@ #include "fpdfsdk/cpdfsdk_helpers.h" #include "fxjs/cfxjs_engine.h" #include "fxjs/cjs_runtime.h" +#include "third_party/base/span.h" struct JSConstSpec { enum Type { Number = 0, String = 1 }; @@ -39,16 +40,13 @@ class CJS_Object { public: static void DefineConsts(CFXJS_Engine* pEngine, int objId, - const JSConstSpec consts[], - size_t count); + pdfium::span<const JSConstSpec> consts); static void DefineProps(CFXJS_Engine* pEngine, int objId, - const JSPropertySpec props[], - size_t count); + pdfium::span<const JSPropertySpec> consts); static void DefineMethods(CFXJS_Engine* pEngine, int objId, - const JSMethodSpec methods[], - size_t count); + pdfium::span<const JSMethodSpec> consts); CJS_Object(v8::Local<v8::Object> pObject, CJS_Runtime* pRuntime); virtual ~CJS_Object(); |