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

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

Issue 1778173002: Split apart the remainder of fpdf_render_render.cpp into per-class files. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: remove more stray includes. 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
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_RESOURCE_H_ 7 #ifndef CORE_INCLUDE_FPDFAPI_FPDF_RESOURCE_H_
8 #define CORE_INCLUDE_FPDFAPI_FPDF_RESOURCE_H_ 8 #define CORE_INCLUDE_FPDFAPI_FPDF_RESOURCE_H_
9 9
10 #include <map> 10 #include <map>
11 11
12 #include "core/include/fpdfapi/fpdf_parser.h" 12 #include "core/include/fpdfapi/fpdf_objects.h"
13 #include "core/include/fxcrt/fx_system.h" 13 #include "core/include/fxcrt/fx_system.h"
14 #include "core/include/fxge/fx_font.h" 14 #include "core/include/fxge/fx_font.h"
15 15
16 class CFX_CTTGSUBTable; 16 class CFX_CTTGSUBTable;
17 class CFX_DIBitmap; 17 class CFX_DIBitmap;
18 class CFX_Font; 18 class CFX_Font;
19 class CFX_SubstFont; 19 class CFX_SubstFont;
20 class CPDF_CID2UnicodeMap; 20 class CPDF_CID2UnicodeMap;
21 class CPDF_CIDFont; 21 class CPDF_CIDFont;
22 class CPDF_CMap; 22 class CPDF_CMap;
23 class CPDF_Color; 23 class CPDF_Color;
24 class CPDF_ColorSpace; 24 class CPDF_ColorSpace;
25 class CPDF_Document;
25 class CPDF_FontEncoding; 26 class CPDF_FontEncoding;
26 class CPDF_Form; 27 class CPDF_Form;
27 class CPDF_Function; 28 class CPDF_Function;
28 class CPDF_Image; 29 class CPDF_Image;
29 class CPDF_Page; 30 class CPDF_Page;
30 class CPDF_Pattern; 31 class CPDF_Pattern;
31 class CPDF_RenderContext; 32 class CPDF_RenderContext;
32 class CPDF_ShadingPattern; 33 class CPDF_ShadingPattern;
33 class CPDF_TilingPattern; 34 class CPDF_TilingPattern;
34 class CPDF_ToUnicodeMap; 35 class CPDF_ToUnicodeMap;
(...skipping 731 matching lines...) Expand 10 before | Expand all | Expand 10 after
766 767
767 FX_BOOL m_bInterpolate; 768 FX_BOOL m_bInterpolate;
768 769
769 CPDF_Document* m_pDocument; 770 CPDF_Document* m_pDocument;
770 771
771 CPDF_Dictionary* m_pOC; 772 CPDF_Dictionary* m_pOC;
772 CPDF_Dictionary* InitJPEG(uint8_t* pData, FX_DWORD size); 773 CPDF_Dictionary* InitJPEG(uint8_t* pData, FX_DWORD size);
773 }; 774 };
774 775
775 #endif // CORE_INCLUDE_FPDFAPI_FPDF_RESOURCE_H_ 776 #endif // CORE_INCLUDE_FPDFAPI_FPDF_RESOURCE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698