| 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_FPDF_PARSER_CPDF_HINT_TABLES_H_ | 7 #ifndef CORE_FPDFAPI_FPDF_PARSER_CPDF_HINT_TABLES_H_ |
| 8 #define CORE_FPDFAPI_FPDF_PARSER_CPDF_HINT_TABLES_H_ | 8 #define CORE_FPDFAPI_FPDF_PARSER_CPDF_HINT_TABLES_H_ |
| 9 | 9 |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "core/fpdfapi/fpdf_parser/include/ipdf_data_avail.h" | 12 #include "core/fpdfapi/fpdf_parser/include/ipdf_data_avail.h" |
| 13 #include "core/fxcrt/include/fx_basic.h" | 13 #include "core/fxcrt/include/fx_basic.h" |
| 14 #include "core/fxcrt/include/fx_stream.h" | 14 #include "core/fxcrt/include/fx_stream.h" |
| 15 | 15 |
| 16 class CFX_BitStream; | 16 class CFX_BitStream; |
| 17 class CPDF_DataAvail; | 17 class CPDF_DataAvail; |
| 18 class CPDF_Dictionary; | 18 class CPDF_Dictionary; |
| 19 class CPDF_Stream; | 19 class CPDF_Stream; |
| 20 | 20 |
| 21 class CPDF_HintTables { | 21 class CPDF_HintTables { |
| 22 public: | 22 public: |
| 23 CPDF_HintTables(CPDF_DataAvail* pDataAvail, CPDF_Dictionary* pLinearized) | 23 CPDF_HintTables(CPDF_DataAvail* pDataAvail, CPDF_Dictionary* pLinearized); |
| 24 : m_pDataAvail(pDataAvail), | |
| 25 m_pLinearizedDict(pLinearized), | |
| 26 m_nFirstPageSharedObjs(0), | |
| 27 m_szFirstPageObjOffset(0) {} | |
| 28 ~CPDF_HintTables(); | 24 ~CPDF_HintTables(); |
| 29 | 25 |
| 30 FX_BOOL GetPagePos(int index, | 26 FX_BOOL GetPagePos(int index, |
| 31 FX_FILESIZE& szPageStartPos, | 27 FX_FILESIZE& szPageStartPos, |
| 32 FX_FILESIZE& szPageLength, | 28 FX_FILESIZE& szPageLength, |
| 33 uint32_t& dwObjNum); | 29 uint32_t& dwObjNum); |
| 34 | 30 |
| 35 IPDF_DataAvail::DocAvailStatus CheckPage( | 31 IPDF_DataAvail::DocAvailStatus CheckPage( |
| 36 int index, | 32 int index, |
| 37 IPDF_DataAvail::DownloadHints* pHints); | 33 IPDF_DataAvail::DownloadHints* pHints); |
| (...skipping 19 matching lines...) Expand all Loading... |
| 57 FX_FILESIZE m_szFirstPageObjOffset; | 53 FX_FILESIZE m_szFirstPageObjOffset; |
| 58 CFX_ArrayTemplate<uint32_t> m_dwDeltaNObjsArray; | 54 CFX_ArrayTemplate<uint32_t> m_dwDeltaNObjsArray; |
| 59 CFX_ArrayTemplate<uint32_t> m_dwNSharedObjsArray; | 55 CFX_ArrayTemplate<uint32_t> m_dwNSharedObjsArray; |
| 60 CFX_ArrayTemplate<uint32_t> m_dwSharedObjNumArray; | 56 CFX_ArrayTemplate<uint32_t> m_dwSharedObjNumArray; |
| 61 CFX_ArrayTemplate<uint32_t> m_dwIdentifierArray; | 57 CFX_ArrayTemplate<uint32_t> m_dwIdentifierArray; |
| 62 std::vector<FX_FILESIZE> m_szPageOffsetArray; | 58 std::vector<FX_FILESIZE> m_szPageOffsetArray; |
| 63 std::vector<FX_FILESIZE> m_szSharedObjOffsetArray; | 59 std::vector<FX_FILESIZE> m_szSharedObjOffsetArray; |
| 64 }; | 60 }; |
| 65 | 61 |
| 66 #endif // CORE_FPDFAPI_FPDF_PARSER_CPDF_HINT_TABLES_H_ | 62 #endif // CORE_FPDFAPI_FPDF_PARSER_CPDF_HINT_TABLES_H_ |
| OLD | NEW |