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

Side by Side Diff: core/include/fpdfapi/fpdf_render.h

Issue 1741003002: Cleanup forward declarations. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 4 years, 9 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
« no previous file with comments | « core/include/fpdfapi/fpdf_page.h ('k') | core/include/fpdfapi/fpdf_resource.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_INCLUDE_FPDFAPI_FPDF_RENDER_H_ 7 #ifndef CORE_INCLUDE_FPDFAPI_FPDF_RENDER_H_
8 #define CORE_INCLUDE_FPDFAPI_FPDF_RENDER_H_ 8 #define CORE_INCLUDE_FPDFAPI_FPDF_RENDER_H_
9 9
10 #include <map> 10 #include <map>
11 #include <memory> 11 #include <memory>
12 12
13 #include "core/include/fpdfapi/fpdf_page.h" 13 #include "core/include/fpdfapi/fpdf_page.h"
14 #include "core/include/fxge/fx_ge.h" 14 #include "core/include/fxge/fx_ge.h"
15 15
16 class CFX_GraphStateData; 16 class CFX_GraphStateData;
17 class CFX_PathData; 17 class CFX_PathData;
18 class CFX_RenderDevice; 18 class CFX_RenderDevice;
19 class CPDF_FormObject;
20 class CPDF_ImageCacheEntry; 19 class CPDF_ImageCacheEntry;
21 class CPDF_ImageObject;
22 class CPDF_PathObject;
23 class CPDF_RenderStatus; 20 class CPDF_RenderStatus;
24 class CPDF_ShadingObject;
25 class CPDF_TextObject;
26 class IFX_Pause; 21 class IFX_Pause;
27 22
28 class IPDF_OCContext { 23 class IPDF_OCContext {
29 public: 24 public:
30 virtual ~IPDF_OCContext() {} 25 virtual ~IPDF_OCContext() {}
31 26
32 virtual FX_BOOL CheckOCGVisible(const CPDF_Dictionary* pOCG) = 0; 27 virtual FX_BOOL CheckOCGVisible(const CPDF_Dictionary* pOCG) = 0;
33 28
34 FX_BOOL CheckObjectVisible(const CPDF_PageObject* pObj); 29 FX_BOOL CheckObjectVisible(const CPDF_PageObject* pObj);
35 }; 30 };
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after
259 CPDF_ImageCacheEntry* m_pCurImageCacheEntry; 254 CPDF_ImageCacheEntry* m_pCurImageCacheEntry;
260 std::map<CPDF_Stream*, CPDF_ImageCacheEntry*> m_ImageCache; 255 std::map<CPDF_Stream*, CPDF_ImageCacheEntry*> m_ImageCache;
261 FX_DWORD m_nTimeCount; 256 FX_DWORD m_nTimeCount;
262 FX_DWORD m_nCacheSize; 257 FX_DWORD m_nCacheSize;
263 FX_BOOL m_bCurFindCache; 258 FX_BOOL m_bCurFindCache;
264 }; 259 };
265 260
266 FX_BOOL IsAvailableMatrix(const CFX_Matrix& matrix); 261 FX_BOOL IsAvailableMatrix(const CFX_Matrix& matrix);
267 262
268 #endif // CORE_INCLUDE_FPDFAPI_FPDF_RENDER_H_ 263 #endif // CORE_INCLUDE_FPDFAPI_FPDF_RENDER_H_
OLDNEW
« no previous file with comments | « core/include/fpdfapi/fpdf_page.h ('k') | core/include/fpdfapi/fpdf_resource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698