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

Side by Side Diff: core/src/fpdfapi/fpdf_font/font_int.h

Issue 1162013003: Merge to XFA: Fix ALL the include guards. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@xfa
Patch Set: Re-upload. Created 5 years, 6 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/src/fpdfapi/fpdf_font/common.h ('k') | core/src/fpdfapi/fpdf_font/ttgsubtable.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 #ifndef CORE_SRC_FPDFAPI_FPDF_FONT_FONT_INT_H_
7 #define CORE_SRC_FPDFAPI_FPDF_FONT_FONT_INT_H_
6 8
7 typedef void* FXFT_Library; 9 typedef void* FXFT_Library;
8 class CPDF_CMapManager 10 class CPDF_CMapManager
9 { 11 {
10 public: 12 public:
11 CPDF_CMapManager(); 13 CPDF_CMapManager();
12 ~CPDF_CMapManager(); 14 ~CPDF_CMapManager();
13 FX_LPVOID GetPackage(FX_BOOL bPrompt); 15 FX_LPVOID GetPackage(FX_BOOL bPrompt);
14 CPDF_CMap* GetPredefinedCMap(const CFX_ByteString& name, FX_BOOL bPrompt); 16 CPDF_CMap* GetPredefinedCMap(const CFX_ByteString& name, FX_BOOL bPrompt);
15 CPDF_CID2UnicodeMap* GetCID2UnicodeMap(int charset, FX_BOOL bPrompt); 17 CPDF_CID2UnicodeMap* GetCID2UnicodeMap(int charset, FX_BOOL bPrompt);
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 CFX_CMapDWordToDWord m_Map; 165 CFX_CMapDWordToDWord m_Map;
164 CPDF_CID2UnicodeMap* m_pBaseMap; 166 CPDF_CID2UnicodeMap* m_pBaseMap;
165 CFX_WideTextBuf m_MultiCharBuf; 167 CFX_WideTextBuf m_MultiCharBuf;
166 }; 168 };
167 class CPDF_FontCharMap : public CFX_CharMap 169 class CPDF_FontCharMap : public CFX_CharMap
168 { 170 {
169 public: 171 public:
170 CPDF_FontCharMap(CPDF_Font* pFont); 172 CPDF_FontCharMap(CPDF_Font* pFont);
171 CPDF_Font* m_pFont; 173 CPDF_Font* m_pFont;
172 }; 174 };
175
176 #endif // CORE_SRC_FPDFAPI_FPDF_FONT_FONT_INT_H_
OLDNEW
« no previous file with comments | « core/src/fpdfapi/fpdf_font/common.h ('k') | core/src/fpdfapi/fpdf_font/ttgsubtable.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698