| OLD | NEW |
| 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_INCLUDE_FPDFAPI_FPDF_PAGE_H_ | 7 #ifndef CORE_INCLUDE_FPDFAPI_FPDF_PAGE_H_ |
| 8 #define CORE_INCLUDE_FPDFAPI_FPDF_PAGE_H_ | 8 #define CORE_INCLUDE_FPDFAPI_FPDF_PAGE_H_ |
| 9 | 9 |
| 10 #include <deque> | 10 #include <deque> |
| 11 #include <memory> | 11 #include <memory> |
| 12 | 12 |
| 13 #include "core/include/fpdfapi/fpdf_parser.h" | |
| 14 #include "core/include/fpdfapi/fpdf_resource.h" | 13 #include "core/include/fpdfapi/fpdf_resource.h" |
| 15 #include "core/include/fxge/fx_dib.h" | 14 #include "core/include/fxge/fx_dib.h" |
| 16 | 15 |
| 17 class CPDF_Page; | 16 class CPDF_Page; |
| 18 class CPDF_Form; | 17 class CPDF_Form; |
| 19 class CPDF_ParseOptions; | 18 class CPDF_ParseOptions; |
| 20 class CPDF_PageObject; | 19 class CPDF_PageObject; |
| 21 class CPDF_PageRenderCache; | 20 class CPDF_PageRenderCache; |
| 22 class CPDF_AllStates; | 21 class CPDF_AllStates; |
| 23 class CPDF_ContentParser; | 22 class CPDF_ContentParser; |
| (...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 CFX_Matrix& matrix); | 160 CFX_Matrix& matrix); |
| 162 CFX_ByteString RealizeResource(CPDF_Object* pResourceObj, | 161 CFX_ByteString RealizeResource(CPDF_Object* pResourceObj, |
| 163 const FX_CHAR* szType); | 162 const FX_CHAR* szType); |
| 164 | 163 |
| 165 CPDF_Page* m_pPage; | 164 CPDF_Page* m_pPage; |
| 166 CPDF_Document* m_pDocument; | 165 CPDF_Document* m_pDocument; |
| 167 CFX_ArrayTemplate<CPDF_PageObject*> m_pageObjects; | 166 CFX_ArrayTemplate<CPDF_PageObject*> m_pageObjects; |
| 168 }; | 167 }; |
| 169 | 168 |
| 170 #endif // CORE_INCLUDE_FPDFAPI_FPDF_PAGE_H_ | 169 #endif // CORE_INCLUDE_FPDFAPI_FPDF_PAGE_H_ |
| OLD | NEW |