Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(400)

Side by Side Diff: xfa/fee/fde_txtedtbuf.h

Issue 1944093002: Cleanup XFA-Specific memory allocators. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Dan's comments, remove more unused methods. Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « xfa/fde/css/fde_cssstylesheet.cpp ('k') | xfa/fee/fde_txtedtbuf.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « xfa/fde/css/fde_cssstylesheet.cpp ('k') | xfa/fee/fde_txtedtbuf.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698