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

Side by Side Diff: core/fxge/android/fpf_skiafontmgr.h

Issue 2377393002: Move core/fxge/include to core/fxge (Closed)
Patch Set: Rebase to master Created 4 years, 2 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/fxge/android/fpf_skiafont.cpp ('k') | core/fxge/android/fpf_skiafontmgr.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 CORE_FXGE_ANDROID_FPF_SKIAFONTMGR_H_ 7 #ifndef CORE_FXGE_ANDROID_FPF_SKIAFONTMGR_H_
8 #define CORE_FXGE_ANDROID_FPF_SKIAFONTMGR_H_ 8 #define CORE_FXGE_ANDROID_FPF_SKIAFONTMGR_H_
9 9
10 #include "core/fxcrt/fx_system.h" 10 #include "core/fxcrt/fx_system.h"
11 11
12 #if _FX_OS_ == _FX_ANDROID_ 12 #if _FX_OS_ == _FX_ANDROID_
13 13
14 #include <map> 14 #include <map>
15 #include <vector> 15 #include <vector>
16 16
17 #include "core/fxge/include/fx_font.h" 17 #include "core/fxge/fx_font.h"
18 18
19 #define FPF_SKIAFONTTYPE_Unknown 0 19 #define FPF_SKIAFONTTYPE_Unknown 0
20 #define FPF_SKIAFONTTYPE_Path 1 20 #define FPF_SKIAFONTTYPE_Path 1
21 #define FPF_SKIAFONTTYPE_File 2 21 #define FPF_SKIAFONTTYPE_File 2
22 #define FPF_SKIAFONTTYPE_Buffer 3 22 #define FPF_SKIAFONTTYPE_Buffer 3
23 23
24 #define FPF_MATCHFONT_REPLACEANSI 1 24 #define FPF_MATCHFONT_REPLACEANSI 1
25 25
26 class CFPF_SkiaFont; 26 class CFPF_SkiaFont;
27 27
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 118
119 FX_BOOL m_bLoaded; 119 FX_BOOL m_bLoaded;
120 FXFT_Library m_FTLibrary; 120 FXFT_Library m_FTLibrary;
121 std::vector<CFPF_SkiaFontDescriptor*> m_FontFaces; 121 std::vector<CFPF_SkiaFontDescriptor*> m_FontFaces;
122 std::map<uint32_t, CFPF_SkiaFont*> m_FamilyFonts; 122 std::map<uint32_t, CFPF_SkiaFont*> m_FamilyFonts;
123 }; 123 };
124 124
125 #endif // _FX_OS_ == _FX_ANDROID_ 125 #endif // _FX_OS_ == _FX_ANDROID_
126 126
127 #endif // CORE_FXGE_ANDROID_FPF_SKIAFONTMGR_H_ 127 #endif // CORE_FXGE_ANDROID_FPF_SKIAFONTMGR_H_
OLDNEW
« no previous file with comments | « core/fxge/android/fpf_skiafont.cpp ('k') | core/fxge/android/fpf_skiafontmgr.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698