diff options
author | Tom Sepez <tsepez@chromium.org> | 2018-07-23 20:41:04 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-07-23 20:41:04 +0000 |
commit | 4c358488d0a8daf3a625cae842efcf27a3bb62f5 (patch) | |
tree | b830f9e75a27f4e3c6a381d01e0932edfd551177 /fxjs/cfxjse_formcalc_context.cpp | |
parent | 2bfa78540c375916ec9973f0ae11271b098180bd (diff) | |
download | pdfium-4c358488d0a8daf3a625cae842efcf27a3bb62f5.tar.xz |
Remove argument from CFXJSE_Value::ToHostObject()
Like the other cases, it is always nullptr.
Change-Id: I280f25899ffbe5e35f4ef3342aec7896edf3e1f2
Reviewed-on: https://pdfium-review.googlesource.com/38592
Reviewed-by: Lei Zhang <thestig@chromium.org>
Commit-Queue: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'fxjs/cfxjse_formcalc_context.cpp')
-rw-r--r-- | fxjs/cfxjse_formcalc_context.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/fxjs/cfxjse_formcalc_context.cpp b/fxjs/cfxjse_formcalc_context.cpp index 6ca57bb649..5319466cfa 100644 --- a/fxjs/cfxjse_formcalc_context.cpp +++ b/fxjs/cfxjse_formcalc_context.cpp @@ -449,7 +449,7 @@ bool PatternStringType(const ByteStringView& szPattern, uint32_t& patternType) { } CFXJSE_FormCalcContext* ToFormCalcContext(CFXJSE_Value* pValue) { - CFXJSE_HostObject* pHostObj = pValue->ToHostObject(nullptr); + CFXJSE_HostObject* pHostObj = pValue->ToHostObject(); return pHostObj ? pHostObj->AsFormCalcContext() : nullptr; } @@ -4944,8 +4944,7 @@ bool CFXJSE_FormCalcContext::fm_ref_equal(CFXJSE_Value* pThis, if (firstJSObject->IsNull() || secondJSObject->IsNull()) return false; - return (firstJSObject->ToHostObject(nullptr) == - secondJSObject->ToHostObject(nullptr)); + return firstJSObject->ToHostObject() == secondJSObject->ToHostObject(); } // static |