diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-10-26 16:49:38 -0400 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-10-26 21:14:16 +0000 |
commit | bef4d3e97bba3274add9738d6b199f7760c88f53 (patch) | |
tree | 5a3d4204ead787e75323bc48d0ad3125c83bfaec /fpdfsdk/javascript/Document.h | |
parent | c94a793413938c4142bc8bedd40ae2fe2527f71a (diff) | |
download | pdfium-bef4d3e97bba3274add9738d6b199f7760c88f53.tar.xz |
Remove unneeded DefineJSObject param
The second parameter to DefineJSObject is always set the same for each
object type. Remove and put the value directly into the DefineObj calls.
Change-Id: If939c57fe6ea3b985ab2337eb30f472c668cdc42
Reviewed-on: https://pdfium-review.googlesource.com/16911
Commit-Queue: dsinclair <dsinclair@chromium.org>
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'fpdfsdk/javascript/Document.h')
-rw-r--r-- | fpdfsdk/javascript/Document.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fpdfsdk/javascript/Document.h b/fpdfsdk/javascript/Document.h index 92199838f1..043e6bee62 100644 --- a/fpdfsdk/javascript/Document.h +++ b/fpdfsdk/javascript/Document.h @@ -35,7 +35,7 @@ class PrintParamsObj : public CJS_EmbedObj { class CJS_PrintParamsObj : public CJS_Object { public: static int GetObjDefnID(); - static void DefineJSObjects(CFXJS_Engine* pEngine, FXJSOBJTYPE eObjType); + static void DefineJSObjects(CFXJS_Engine* pEngine); explicit CJS_PrintParamsObj(v8::Local<v8::Object> pObject) : CJS_Object(pObject) {} @@ -268,7 +268,7 @@ class Document : public CJS_EmbedObj { class CJS_Document : public CJS_Object { public: static int GetObjDefnID(); - static void DefineJSObjects(CFXJS_Engine* pEngine, FXJSOBJTYPE eObjType); + static void DefineJSObjects(CFXJS_Engine* pEngine); explicit CJS_Document(v8::Local<v8::Object> pObject) : CJS_Object(pObject) {} ~CJS_Document() override {} |