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_report.cpp | |
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_report.cpp')
-rw-r--r-- | fxjs/cjs_report.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fxjs/cjs_report.cpp b/fxjs/cjs_report.cpp index eccba07a99..868e9c3279 100644 --- a/fxjs/cjs_report.cpp +++ b/fxjs/cjs_report.cpp @@ -22,7 +22,7 @@ const char CJS_Report::kName[] = "Report"; void CJS_Report::DefineJSObjects(CFXJS_Engine* pEngine, FXJSOBJTYPE eObjType) { ObjDefnID = pEngine->DefineObj(CJS_Report::kName, eObjType, JSConstructor<CJS_Report>, JSDestructor); - DefineMethods(pEngine, ObjDefnID, MethodSpecs, FX_ArraySize(MethodSpecs)); + DefineMethods(pEngine, ObjDefnID, MethodSpecs); } CJS_Report::CJS_Report(v8::Local<v8::Object> pObject, CJS_Runtime* pRuntime) |