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_MODULE_H_ | 7 #ifndef CORE_INCLUDE_FPDFAPI_FPDF_MODULE_H_ |
8 #define CORE_INCLUDE_FPDFAPI_FPDF_MODULE_H_ | 8 #define CORE_INCLUDE_FPDFAPI_FPDF_MODULE_H_ |
9 | 9 |
10 #include "../fxcrt/fx_coordinates.h" | 10 #include "core/include/fxcrt/fx_coordinates.h" |
11 #include "../fxcrt/fx_system.h" | 11 #include "core/include/fxcrt/fx_system.h" |
12 #include "third_party/base/nonstd_unique_ptr.h" | 12 #include "third_party/base/nonstd_unique_ptr.h" |
13 | 13 |
14 class CCodec_ModuleMgr; | 14 class CCodec_ModuleMgr; |
15 class CFX_AffineMatrix; | 15 class CFX_AffineMatrix; |
16 class CFX_BitmapDevice; | 16 class CFX_BitmapDevice; |
17 class CFX_DIBSource; | 17 class CFX_DIBSource; |
18 class CPDF_ColorSpace; | 18 class CPDF_ColorSpace; |
19 class CPDF_Dictionary; | 19 class CPDF_Dictionary; |
20 class CPDF_DocPageData; | 20 class CPDF_DocPageData; |
21 class CPDF_DocRenderData; | 21 class CPDF_DocRenderData; |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
104 virtual CPDF_DocRenderData* CreateDocData(CPDF_Document* pDoc) = 0; | 104 virtual CPDF_DocRenderData* CreateDocData(CPDF_Document* pDoc) = 0; |
105 virtual void DestroyDocData(CPDF_DocRenderData*) = 0; | 105 virtual void DestroyDocData(CPDF_DocRenderData*) = 0; |
106 virtual void ClearDocData(CPDF_DocRenderData*) = 0; | 106 virtual void ClearDocData(CPDF_DocRenderData*) = 0; |
107 virtual CPDF_DocRenderData* GetRenderData() = 0; | 107 virtual CPDF_DocRenderData* GetRenderData() = 0; |
108 virtual CPDF_PageRenderCache* CreatePageCache(CPDF_Page* pPage) = 0; | 108 virtual CPDF_PageRenderCache* CreatePageCache(CPDF_Page* pPage) = 0; |
109 virtual void DestroyPageCache(CPDF_PageRenderCache*) = 0; | 109 virtual void DestroyPageCache(CPDF_PageRenderCache*) = 0; |
110 virtual CPDF_RenderConfig* GetConfig() = 0; | 110 virtual CPDF_RenderConfig* GetConfig() = 0; |
111 }; | 111 }; |
112 | 112 |
113 #endif // CORE_INCLUDE_FPDFAPI_FPDF_MODULE_H_ | 113 #endif // CORE_INCLUDE_FPDFAPI_FPDF_MODULE_H_ |
OLD | NEW |