diff options
author | tsepez <tsepez@chromium.org> | 2016-04-28 16:56:08 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-04-28 16:56:08 -0700 |
commit | a31098417852bdf13e693a6e0913e0706cf94098 (patch) | |
tree | 7539d764cfc859d8d88ab0162281f2184d1963b7 /xfa/fxfa/fm2js/xfa_simpleexpression.h | |
parent | 9a1b665f8a6762927b7fa4fb9c812f00e8d3135e (diff) | |
download | pdfium-a31098417852bdf13e693a6e0913e0706cf94098.tar.xz |
Convert CFX_PtrArray to typesafe CFX_ArrayTemplate, Part 6
Review-Url: https://codereview.chromium.org/1926303002
Diffstat (limited to 'xfa/fxfa/fm2js/xfa_simpleexpression.h')
-rw-r--r-- | xfa/fxfa/fm2js/xfa_simpleexpression.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/xfa/fxfa/fm2js/xfa_simpleexpression.h b/xfa/fxfa/fm2js/xfa_simpleexpression.h index 94f628b09b..2530128846 100644 --- a/xfa/fxfa/fm2js/xfa_simpleexpression.h +++ b/xfa/fxfa/fm2js/xfa_simpleexpression.h @@ -226,16 +226,17 @@ class CXFA_FMCallExpression : public CXFA_FMUnaryExpression { public: CXFA_FMCallExpression(uint32_t line, CXFA_FMSimpleExpression* pExp, - CFX_PtrArray* pArguments, + CFX_ArrayTemplate<CXFA_FMSimpleExpression*>* pArguments, FX_BOOL bIsSomMethod); ~CXFA_FMCallExpression() override; + bool IsBuildInFunc(CFX_WideTextBuf* funcName); uint32_t IsMethodWithObjParam(const CFX_WideStringC& methodName); void ToJavaScript(CFX_WideTextBuf& javascript) override; private: FX_BOOL m_bIsSomMethod; - CFX_PtrArray* m_pArguments; + CFX_ArrayTemplate<CXFA_FMSimpleExpression*>* m_pArguments; }; class CXFA_FMDotAccessorExpression : public CXFA_FMBinExpression { |