diff options
author | Lei Zhang <thestig@chromium.org> | 2018-07-11 13:04:43 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-07-11 13:04:43 +0000 |
commit | ad1f7b410cd6885bd22d9ee49d9f80d3017f131f (patch) | |
tree | 6a7a9fa616004ab6c457c46682dd00125952913b /fxjs/cjs_report.cpp | |
parent | b1a4db5551ca7c211c8acbec2b657d25fa7d7f1d (diff) | |
download | pdfium-ad1f7b410cd6885bd22d9ee49d9f80d3017f131f.tar.xz |
Check GetObjDefnID() in various JS functions.
Consolidate all the checks into JSGetObject(), and add GetObjDefnID()
methods for classes that are missing it.
BUG=chromium:862059
Change-Id: I2c2b725a01dcd259ef712d2513fcf740cc410b15
Reviewed-on: https://pdfium-review.googlesource.com/37510
Commit-Queue: dsinclair <dsinclair@chromium.org>
Reviewed-by: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'fxjs/cjs_report.cpp')
-rw-r--r-- | fxjs/cjs_report.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/fxjs/cjs_report.cpp b/fxjs/cjs_report.cpp index 868e9c3279..6e205ef7e7 100644 --- a/fxjs/cjs_report.cpp +++ b/fxjs/cjs_report.cpp @@ -19,6 +19,11 @@ int CJS_Report::ObjDefnID = -1; const char CJS_Report::kName[] = "Report"; // static +int CJS_Report::GetObjDefnID() { + return ObjDefnID; +} + +// static void CJS_Report::DefineJSObjects(CFXJS_Engine* pEngine, FXJSOBJTYPE eObjType) { ObjDefnID = pEngine->DefineObj(CJS_Report::kName, eObjType, JSConstructor<CJS_Report>, JSDestructor); |