diff options
author | tsepez <tsepez@chromium.org> | 2016-05-03 14:13:29 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-05-03 14:13:29 -0700 |
commit | 4d06f83da7fbc65e83ecc3c36b339c04ac1ab668 (patch) | |
tree | 183592694f9c93951838111130d78d204e1e9a68 /xfa/fee/fde_txtedtbuf.h | |
parent | 89fcde88f0c03da77d7fd83dece7726d66fd190e (diff) | |
download | pdfium-4d06f83da7fbc65e83ecc3c36b339c04ac1ab668.tar.xz |
Cleanup XFA-Specific memory allocators.
Remove unused "dynamic" allocator (the scary one).
Use malloc/free wrapper allocator under #ifdef for CF/asan testing.
Rename IFX_MEMAllocator to IFX_MemoryAllocator (MEM in all caps
would imply that MEM was an acroynm, not an abbreviation).
Review-Url: https://codereview.chromium.org/1944093002
Diffstat (limited to 'xfa/fee/fde_txtedtbuf.h')
-rw-r--r-- | xfa/fee/fde_txtedtbuf.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xfa/fee/fde_txtedtbuf.h b/xfa/fee/fde_txtedtbuf.h index 5d7de45401..673d2b98ca 100644 --- a/xfa/fee/fde_txtedtbuf.h +++ b/xfa/fee/fde_txtedtbuf.h @@ -81,7 +81,7 @@ class CFDE_TxtEdtBuf { int32_t m_nTotal; FX_BOOL m_bChanged; CFX_ArrayTemplate<FDE_CHUNKHEADER*> m_Chunks; - IFX_MEMAllocator* m_pAllocator; + IFX_MemoryAllocator* m_pAllocator; }; #endif // XFA_FEE_FDE_TXTEDTBUF_H_ |