From 2398d8938277a2492b411f8f807bf1935918ccae Mon Sep 17 00:00:00 2001 From: Tom Sepez Date: Wed, 17 Feb 2016 16:46:26 -0800 Subject: Remove CFX_PtrList from renderer main loop. Exposes an iterator over the object list, but not the object holder, since pages and forms inherit from object holder, and we don't want to imply that there's only one thing that might be iterated over for those classes. R=thestig@chromium.org Review URL: https://codereview.chromium.org/1700183002 . --- core/include/fpdfapi/fpdf_page.h | 27 +++++---------------------- 1 file changed, 5 insertions(+), 22 deletions(-) (limited to 'core/include/fpdfapi/fpdf_page.h') diff --git a/core/include/fpdfapi/fpdf_page.h b/core/include/fpdfapi/fpdf_page.h index fb951280a2..3d98e34578 100644 --- a/core/include/fpdfapi/fpdf_page.h +++ b/core/include/fpdfapi/fpdf_page.h @@ -7,6 +7,7 @@ #ifndef CORE_INCLUDE_FPDFAPI_FPDF_PAGE_H_ #define CORE_INCLUDE_FPDFAPI_FPDF_PAGE_H_ +#include #include #include "core/include/fpdfapi/fpdf_parser.h" @@ -27,33 +28,15 @@ class CPDF_StreamContentParser; #define PDFTRANS_ISOLATED 0x0200 #define PDFTRANS_KNOCKOUT 0x0400 -class CPDF_PageObjectList : public CFX_PtrList { +class CPDF_PageObjectList : public std::list> { public: - explicit CPDF_PageObjectList(int nBlockSize) : CFX_PtrList(nBlockSize) {} - - CPDF_PageObject* GetNextObject(FX_POSITION& pos) const { - return static_cast(GetNext(pos)); - } - - CPDF_PageObject* GetPrevObject(FX_POSITION& pos) const { - return static_cast(GetPrev(pos)); - } - - CPDF_PageObject* GetObjectAt(FX_POSITION pos) const { - return static_cast(GetAt(pos)); - } - // Linear complexity, to be avoided except as needed by public APIs. - CPDF_PageObject* GetObjectByIndex(int index) const; - - FX_POSITION InsertObject(FX_POSITION posInsertAfter, - CPDF_PageObject* pNewObject); + CPDF_PageObject* GetPageObjectByIndex(int index); }; class CPDF_PageObjectHolder { public: CPDF_PageObjectHolder(); - ~CPDF_PageObjectHolder(); void ContinueParse(IFX_Pause* pPause); FX_BOOL IsParsed() const { return m_ParseState == CONTENT_PARSED; } @@ -165,8 +148,8 @@ class CPDF_Form : public CPDF_PageObjectHolder { }; class CPDF_PageContentGenerator { public: - CPDF_PageContentGenerator(CPDF_Page* pPage); - ~CPDF_PageContentGenerator(); + explicit CPDF_PageContentGenerator(CPDF_Page* pPage); + FX_BOOL InsertPageObject(CPDF_PageObject* pPageObject); void GenerateContent(); void TransformContent(CFX_Matrix& matrix); -- cgit v1.2.3