OLD | NEW |
1 // Copyright 2016 PDFium Authors. All rights reserved. | 1 // Copyright 2016 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 CORE_FPDFAPI_PARSER_CPDF_DATA_AVAIL_H_ | 7 #ifndef CORE_FPDFAPI_PARSER_CPDF_DATA_AVAIL_H_ |
8 #define CORE_FPDFAPI_PARSER_CPDF_DATA_AVAIL_H_ | 8 #define CORE_FPDFAPI_PARSER_CPDF_DATA_AVAIL_H_ |
9 | 9 |
10 #include <memory> | 10 #include <memory> |
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
214 PDF_DATAAVAIL_STATUS m_docStatus; | 214 PDF_DATAAVAIL_STATUS m_docStatus; |
215 FX_FILESIZE m_dwFileLen; | 215 FX_FILESIZE m_dwFileLen; |
216 CPDF_Document* m_pDocument; | 216 CPDF_Document* m_pDocument; |
217 std::set<uint32_t> m_ObjectSet; | 217 std::set<uint32_t> m_ObjectSet; |
218 std::vector<CPDF_Object*> m_objs_array; | 218 std::vector<CPDF_Object*> m_objs_array; |
219 FX_FILESIZE m_Pos; | 219 FX_FILESIZE m_Pos; |
220 FX_FILESIZE m_bufferOffset; | 220 FX_FILESIZE m_bufferOffset; |
221 uint32_t m_bufferSize; | 221 uint32_t m_bufferSize; |
222 CFX_ByteString m_WordBuf; | 222 CFX_ByteString m_WordBuf; |
223 uint8_t m_bufferData[512]; | 223 uint8_t m_bufferData[512]; |
224 CFX_ArrayTemplate<uint32_t> m_XRefStreamList; | 224 std::vector<uint32_t> m_XRefStreamList; |
225 CFX_ArrayTemplate<uint32_t> m_PageObjList; | 225 std::vector<uint32_t> m_PageObjList; |
226 uint32_t m_PagesObjNum; | 226 uint32_t m_PagesObjNum; |
227 bool m_bLinearedDataOK; | 227 bool m_bLinearedDataOK; |
228 bool m_bMainXRefLoadTried; | 228 bool m_bMainXRefLoadTried; |
229 bool m_bMainXRefLoadedOK; | 229 bool m_bMainXRefLoadedOK; |
230 bool m_bPagesTreeLoad; | 230 bool m_bPagesTreeLoad; |
231 bool m_bPagesLoad; | 231 bool m_bPagesLoad; |
232 CPDF_Parser* m_pCurrentParser; | 232 CPDF_Parser* m_pCurrentParser; |
233 FX_FILESIZE m_dwCurrentXRefSteam; | 233 FX_FILESIZE m_dwCurrentXRefSteam; |
234 bool m_bAnnotsLoad; | 234 bool m_bAnnotsLoad; |
235 bool m_bHaveAcroForm; | 235 bool m_bHaveAcroForm; |
(...skipping 12 matching lines...) Expand all Loading... |
248 bool m_bTotalLoadPageTree; | 248 bool m_bTotalLoadPageTree; |
249 bool m_bCurPageDictLoadOK; | 249 bool m_bCurPageDictLoadOK; |
250 PageNode m_PageNode; | 250 PageNode m_PageNode; |
251 std::set<uint32_t> m_pageMapCheckState; | 251 std::set<uint32_t> m_pageMapCheckState; |
252 std::set<uint32_t> m_pagesLoadState; | 252 std::set<uint32_t> m_pagesLoadState; |
253 std::unique_ptr<CPDF_HintTables> m_pHintTables; | 253 std::unique_ptr<CPDF_HintTables> m_pHintTables; |
254 bool m_bSupportHintTable; | 254 bool m_bSupportHintTable; |
255 }; | 255 }; |
256 | 256 |
257 #endif // CORE_FPDFAPI_PARSER_CPDF_DATA_AVAIL_H_ | 257 #endif // CORE_FPDFAPI_PARSER_CPDF_DATA_AVAIL_H_ |
OLD | NEW |