diff options
author | tsepez <tsepez@chromium.org> | 2017-01-06 10:29:49 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2017-01-06 10:29:49 -0800 |
commit | 591ed144f8dfe4b2915f01f1cc725f584d498a3f (patch) | |
tree | f08cf7fe476888216f696bec84023ad34b8a7cfe /xfa/fxfa | |
parent | 6fd07ef0a817dca5acbcadea41b8f880376f339a (diff) | |
download | pdfium-591ed144f8dfe4b2915f01f1cc725f584d498a3f.tar.xz |
Remove CFX_MapPtrToPtr and templates.chromium/2976chromium/2975
All usage is now replaced with stl equivalents.
Move one definition from fx_basic.h to where it's actually needed.
Review-Url: https://codereview.chromium.org/2612773007
Diffstat (limited to 'xfa/fxfa')
-rw-r--r-- | xfa/fxfa/parser/xfa_object.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/xfa/fxfa/parser/xfa_object.h b/xfa/fxfa/parser/xfa_object.h index 8be19ec2e1..cc116505e0 100644 --- a/xfa/fxfa/parser/xfa_object.h +++ b/xfa/fxfa/parser/xfa_object.h @@ -128,6 +128,8 @@ enum XFA_SOM_MESSAGETYPE { using CXFA_NodeArray = CFX_ArrayTemplate<CXFA_Node*>; using CXFA_NodeStack = CFX_StackTemplate<CXFA_Node*>; using CXFA_NodeSet = std::unordered_set<CXFA_Node*>; + +typedef void (*PD_CALLBACK_FREEDATA)(void* pData); typedef void (*PD_CALLBACK_DUPLICATEDATA)(void*& pData); struct XFA_MAPDATABLOCKCALLBACKINFO { |