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

Side by Side Diff: xfa/fde/xml/cfx_saxreader.h

Issue 2649563003: Replace CFX_ByteArray with CFX_ArrayTemplate<uint8_t> (Closed)
Patch Set: re-upload Created 3 years, 11 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/tto/fde_textout.h ('k') | xfa/fgas/layout/fgas_rtfbreak.h » ('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_FDE_XML_CFX_SAXREADER_H_ 7 #ifndef XFA_FDE_XML_CFX_SAXREADER_H_
8 #define XFA_FDE_XML_CFX_SAXREADER_H_ 8 #define XFA_FDE_XML_CFX_SAXREADER_H_
9 9
10 #include <memory> 10 #include <memory>
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 CFX_SAXFile m_File; 121 CFX_SAXFile m_File;
122 CXFA_SAXReaderHandler* m_pHandler; 122 CXFA_SAXReaderHandler* m_pHandler;
123 int32_t m_iState; 123 int32_t m_iState;
124 std::stack<std::unique_ptr<CFX_SAXItem>> m_Stack; 124 std::stack<std::unique_ptr<CFX_SAXItem>> m_Stack;
125 uint32_t m_dwItemID; 125 uint32_t m_dwItemID;
126 CFX_SaxMode m_eMode; 126 CFX_SaxMode m_eMode;
127 CFX_SaxMode m_ePrevMode; 127 CFX_SaxMode m_ePrevMode;
128 bool m_bCharData; 128 bool m_bCharData;
129 uint8_t m_CurByte; 129 uint8_t m_CurByte;
130 uint32_t m_dwDataOffset; 130 uint32_t m_dwDataOffset;
131 CFX_ByteArray m_SkipStack; 131 CFX_ArrayTemplate<uint8_t> m_SkipStack;
132 uint8_t m_SkipChar; 132 uint8_t m_SkipChar;
133 uint32_t m_dwNodePos; 133 uint32_t m_dwNodePos;
134 uint8_t* m_pszData; 134 uint8_t* m_pszData;
135 int32_t m_iDataSize; 135 int32_t m_iDataSize;
136 int32_t m_iDataLength; 136 int32_t m_iDataLength;
137 int32_t m_iEntityStart; 137 int32_t m_iEntityStart;
138 int32_t m_iDataPos; 138 int32_t m_iDataPos;
139 uint8_t* m_pszName; 139 uint8_t* m_pszName;
140 int32_t m_iNameSize; 140 int32_t m_iNameSize;
141 int32_t m_iNameLength; 141 int32_t m_iNameLength;
142 uint32_t m_dwParseMode; 142 uint32_t m_dwParseMode;
143 CFX_SAXCommentContext* m_pCommentContext; 143 CFX_SAXCommentContext* m_pCommentContext;
144 }; 144 };
145 145
146 #endif // XFA_FDE_XML_CFX_SAXREADER_H_ 146 #endif // XFA_FDE_XML_CFX_SAXREADER_H_
OLDNEW
« no previous file with comments | « xfa/fde/tto/fde_textout.h ('k') | xfa/fgas/layout/fgas_rtfbreak.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698