diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-11-02 19:40:58 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-11-02 19:40:58 +0000 |
commit | eda1761e6a90058a97cee1bcd763a2447eb6a67b (patch) | |
tree | e2ad7c55d46caed4c6338de4794ba5c00b64c21f /xfa/fxfa/cxfa_ffdocview.cpp | |
parent | a6adac83c6aadbacf2a338d2e55148f7d3417762 (diff) | |
download | pdfium-eda1761e6a90058a97cee1bcd763a2447eb6a67b.tar.xz |
Remove default values from Set{UserData|Object} and GetUserData.
This CL removes the default values and inlines at the call sites.
Change-Id: I47ff04a01c30af89949e9c8dd5d51f7ffaef1f98
Reviewed-on: https://pdfium-review.googlesource.com/17610
Commit-Queue: dsinclair <dsinclair@chromium.org>
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'xfa/fxfa/cxfa_ffdocview.cpp')
-rw-r--r-- | xfa/fxfa/cxfa_ffdocview.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/xfa/fxfa/cxfa_ffdocview.cpp b/xfa/fxfa/cxfa_ffdocview.cpp index a23c7e2958..7d48a309ee 100644 --- a/xfa/fxfa/cxfa_ffdocview.cpp +++ b/xfa/fxfa/cxfa_ffdocview.cpp @@ -619,7 +619,7 @@ void CXFA_FFDocView::AddCalculateWidgetAcc(CXFA_WidgetAcc* pWidgetAcc) { void CXFA_FFDocView::AddCalculateNodeNotify(CXFA_Node* pNodeChange) { auto* pGlobalData = static_cast<CXFA_CalcData*>( - pNodeChange->JSNode()->GetUserData(XFA_CalcData)); + pNodeChange->JSNode()->GetUserData(XFA_CalcData, false)); if (!pGlobalData) return; @@ -635,10 +635,10 @@ size_t CXFA_FFDocView::RunCalculateRecursive(size_t index) { AddCalculateNodeNotify(pCurAcc->GetNode()); int32_t iRefCount = (int32_t)(uintptr_t)pCurAcc->GetNode()->JSNode()->GetUserData( - XFA_CalcRefCount); + XFA_CalcRefCount, false); iRefCount++; - pCurAcc->GetNode()->JSNode()->SetUserData(XFA_CalcRefCount, - (void*)(uintptr_t)iRefCount); + pCurAcc->GetNode()->JSNode()->SetUserData( + XFA_CalcRefCount, (void*)(uintptr_t)iRefCount, nullptr); if (iRefCount > 11) break; if (pCurAcc->ProcessCalculate() == XFA_EVENTERROR_Success) @@ -656,8 +656,8 @@ int32_t CXFA_FFDocView::RunCalculateWidgets() { RunCalculateRecursive(0); for (CXFA_WidgetAcc* pCurAcc : m_CalculateAccs) - pCurAcc->GetNode()->JSNode()->SetUserData(XFA_CalcRefCount, - (void*)(uintptr_t)0); + pCurAcc->GetNode()->JSNode()->SetUserData(XFA_CalcRefCount, nullptr, + nullptr); m_CalculateAccs.clear(); return XFA_EVENTERROR_Success; |