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

Side by Side Diff: core/src/fpdfapi/fpdf_page/pageint.h

Issue 1700183002: Remove CFX_PtrList from renderer main loop. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Nits. Created 4 years, 10 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
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 CORE_SRC_FPDFAPI_FPDF_PAGE_PAGEINT_H_ 7 #ifndef CORE_SRC_FPDFAPI_FPDF_PAGE_PAGEINT_H_
8 #define CORE_SRC_FPDFAPI_FPDF_PAGE_PAGEINT_H_ 8 #define CORE_SRC_FPDFAPI_FPDF_PAGE_PAGEINT_H_
9 9
10 #include <map> 10 #include <map>
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 }; 87 };
88 #define _FPDF_MAX_FORM_LEVEL_ 30 88 #define _FPDF_MAX_FORM_LEVEL_ 30
89 #define _FPDF_MAX_TYPE3_FORM_LEVEL_ 4 89 #define _FPDF_MAX_TYPE3_FORM_LEVEL_ 4
90 #define _FPDF_MAX_OBJECT_STACK_SIZE_ 512 90 #define _FPDF_MAX_OBJECT_STACK_SIZE_ 512
91 class CPDF_StreamContentParser { 91 class CPDF_StreamContentParser {
92 public: 92 public:
93 CPDF_StreamContentParser(CPDF_Document* pDoc, 93 CPDF_StreamContentParser(CPDF_Document* pDoc,
94 CPDF_Dictionary* pPageResources, 94 CPDF_Dictionary* pPageResources,
95 CPDF_Dictionary* pParentResources, 95 CPDF_Dictionary* pParentResources,
96 CFX_Matrix* pmtContentToUser, 96 CFX_Matrix* pmtContentToUser,
97 CPDF_PageObjectHolder* pObjHolder, 97 CPDF_PageObjectHolder* pObjectHolder,
98 CPDF_Dictionary* pResources, 98 CPDF_Dictionary* pResources,
99 CFX_FloatRect* pBBox, 99 CFX_FloatRect* pBBox,
100 CPDF_ParseOptions* pOptions, 100 CPDF_ParseOptions* pOptions,
101 CPDF_AllStates* pAllStates, 101 CPDF_AllStates* pAllStates,
102 int level); 102 int level);
103 ~CPDF_StreamContentParser(); 103 ~CPDF_StreamContentParser();
104 104
105 CPDF_PageObjectHolder* GetPageObjectHolder() const { return m_pObjectHolder; } 105 CPDF_PageObjectHolder* GetPageObjectHolder() const { return m_pObjectHolder; }
106 CPDF_AllStates* GetCurStates() const { return m_pCurStates.get(); } 106 CPDF_AllStates* GetCurStates() const { return m_pCurStates.get(); }
107 FX_BOOL IsColored() const { return m_bColored; } 107 FX_BOOL IsColored() const { return m_bColored; }
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after
291 291
292 private: 292 private:
293 enum InternalStage { 293 enum InternalStage {
294 STAGE_GETCONTENT = 1, 294 STAGE_GETCONTENT = 1,
295 STAGE_PARSE, 295 STAGE_PARSE,
296 STAGE_CHECKCLIP, 296 STAGE_CHECKCLIP,
297 }; 297 };
298 298
299 ParseStatus m_Status; 299 ParseStatus m_Status;
300 InternalStage m_InternalStage; 300 InternalStage m_InternalStage;
301 CPDF_PageObjectHolder* m_pObjects; 301 CPDF_PageObjectHolder* m_pObjectHolder;
302 FX_BOOL m_bForm; 302 FX_BOOL m_bForm;
303 CPDF_ParseOptions m_Options; 303 CPDF_ParseOptions m_Options;
304 CPDF_Type3Char* m_pType3Char; 304 CPDF_Type3Char* m_pType3Char;
305 FX_DWORD m_nStreams; 305 FX_DWORD m_nStreams;
306 std::unique_ptr<CPDF_StreamAcc> m_pSingleStream; 306 std::unique_ptr<CPDF_StreamAcc> m_pSingleStream;
307 std::vector<std::unique_ptr<CPDF_StreamAcc>> m_StreamArray; 307 std::vector<std::unique_ptr<CPDF_StreamAcc>> m_StreamArray;
308 uint8_t* m_pData; 308 uint8_t* m_pData;
309 FX_DWORD m_Size; 309 FX_DWORD m_Size;
310 FX_DWORD m_CurrentOffset; 310 FX_DWORD m_CurrentOffset;
311 std::unique_ptr<CPDF_StreamContentParser> m_pParser; 311 std::unique_ptr<CPDF_StreamContentParser> m_pParser;
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
453 453
454 private: 454 private:
455 CPDF_ColorSpace* m_pBaseCS; 455 CPDF_ColorSpace* m_pBaseCS;
456 CPDF_CountedColorSpace* m_pCountedBaseCS; 456 CPDF_CountedColorSpace* m_pCountedBaseCS;
457 }; 457 };
458 458
459 void PDF_ReplaceAbbr(CPDF_Object* pObj); 459 void PDF_ReplaceAbbr(CPDF_Object* pObj);
460 bool IsPathOperator(const uint8_t* buf, size_t len); 460 bool IsPathOperator(const uint8_t* buf, size_t len);
461 461
462 #endif // CORE_SRC_FPDFAPI_FPDF_PAGE_PAGEINT_H_ 462 #endif // CORE_SRC_FPDFAPI_FPDF_PAGE_PAGEINT_H_
OLDNEW
« no previous file with comments | « core/src/fpdfapi/fpdf_page/fpdf_page_parser_old.cpp ('k') | core/src/fpdfapi/fpdf_render/fpdf_render.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698