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

Side by Side Diff: xfa/fgas/font/fgas_gefont.h

Issue 2162503003: Cleanup fgas/crt. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Win fixes Created 4 years, 5 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 | « xfa/fgas/crt/fgas_utils.cpp ('k') | xfa/fgas/font/fgas_gefont.cpp » ('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 XFA_FGAS_FONT_FGAS_GEFONT_H_ 7 #ifndef XFA_FGAS_FONT_FGAS_GEFONT_H_
8 #define XFA_FGAS_FONT_FGAS_GEFONT_H_ 8 #define XFA_FGAS_FONT_FGAS_GEFONT_H_
9 9
10 #include <map> 10 #include <map>
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 FX_BOOL m_bUseLogFontStyle; 91 FX_BOOL m_bUseLogFontStyle;
92 uint32_t m_dwLogFontStyle; 92 uint32_t m_dwLogFontStyle;
93 #endif 93 #endif
94 CFX_Font* m_pFont; 94 CFX_Font* m_pFont;
95 IFGAS_FontMgr* m_pFontMgr; 95 IFGAS_FontMgr* m_pFontMgr;
96 int32_t m_iRefCount; 96 int32_t m_iRefCount;
97 FX_BOOL m_bExtFont; 97 FX_BOOL m_bExtFont;
98 IFX_Stream* m_pStream; 98 IFX_Stream* m_pStream;
99 IFX_FileRead* m_pFileRead; 99 IFX_FileRead* m_pFileRead;
100 CFX_UnicodeEncoding* m_pFontEncoding; 100 CFX_UnicodeEncoding* m_pFontEncoding;
101 CFX_WordDiscreteArray* m_pCharWidthMap; 101 CFX_DiscreteArrayTemplate<uint16_t>* m_pCharWidthMap;
102 CFX_MassArrayTemplate<CFX_Rect>* m_pRectArray; 102 CFX_MassArrayTemplate<CFX_Rect>* m_pRectArray;
103 CFX_MapPtrToPtr* m_pBBoxMap; 103 CFX_MapPtrToPtr* m_pBBoxMap;
104 CXFA_PDFFontMgr* m_pProvider; 104 CXFA_PDFFontMgr* m_pProvider;
105 CFX_ArrayTemplate<CFGAS_GEFont*> m_SubstFonts; 105 CFX_ArrayTemplate<CFGAS_GEFont*> m_SubstFonts;
106 std::map<FX_WCHAR, CFGAS_GEFont*> m_FontMapper; 106 std::map<FX_WCHAR, CFGAS_GEFont*> m_FontMapper;
107 }; 107 };
108 108
109 #endif // XFA_FGAS_FONT_FGAS_GEFONT_H_ 109 #endif // XFA_FGAS_FONT_FGAS_GEFONT_H_
OLDNEW
« no previous file with comments | « xfa/fgas/crt/fgas_utils.cpp ('k') | xfa/fgas/font/fgas_gefont.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698