| OLD | NEW |
| 1 // Copyright 2014 PDFium Authors. All rights reserved. | 1 // Copyright 2014 PDFium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
| 6 | 6 |
| 7 #ifndef XFA_FEE_FDE_TXTEDTBUF_H_ | 7 #ifndef XFA_FEE_FDE_TXTEDTBUF_H_ |
| 8 #define XFA_FEE_FDE_TXTEDTBUF_H_ | 8 #define XFA_FEE_FDE_TXTEDTBUF_H_ |
| 9 | 9 |
| 10 #include "xfa/fee/ifde_txtedtengine.h" | 10 #include "xfa/fee/ifde_txtedtengine.h" |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 | 74 |
| 75 void ResetChunkBuffer(int32_t nDefChunkCount, int32_t nChunkSize); | 75 void ResetChunkBuffer(int32_t nDefChunkCount, int32_t nChunkSize); |
| 76 int32_t CP2Index(const FDE_CHUNKPLACE& cp) const; | 76 int32_t CP2Index(const FDE_CHUNKPLACE& cp) const; |
| 77 void Index2CP(int32_t nIndex, FDE_CHUNKPLACE& cp) const; | 77 void Index2CP(int32_t nIndex, FDE_CHUNKPLACE& cp) const; |
| 78 | 78 |
| 79 int32_t m_nChunkSize; | 79 int32_t m_nChunkSize; |
| 80 | 80 |
| 81 int32_t m_nTotal; | 81 int32_t m_nTotal; |
| 82 FX_BOOL m_bChanged; | 82 FX_BOOL m_bChanged; |
| 83 CFX_ArrayTemplate<FDE_CHUNKHEADER*> m_Chunks; | 83 CFX_ArrayTemplate<FDE_CHUNKHEADER*> m_Chunks; |
| 84 IFX_MEMAllocator* m_pAllocator; | 84 IFX_MemoryAllocator* m_pAllocator; |
| 85 }; | 85 }; |
| 86 | 86 |
| 87 #endif // XFA_FEE_FDE_TXTEDTBUF_H_ | 87 #endif // XFA_FEE_FDE_TXTEDTBUF_H_ |
| OLD | NEW |