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

Side by Side Diff: core/fxge/ge/cfx_fontmapper.cpp

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/ge/cfx_fontcache.cpp ('k') | core/fxge/ge/cfx_fontmgr.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 2016 PDFium Authors. All rights reserved. 1 // Copyright 2016 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 #include "core/fxge/include/cfx_fontmapper.h" 7 #include "core/fxge/cfx_fontmapper.h"
8 8
9 #include <memory> 9 #include <memory>
10 #include <utility> 10 #include <utility>
11 #include <vector> 11 #include <vector>
12 12
13 #include "core/fxge/include/cfx_substfont.h" 13 #include "core/fxge/cfx_substfont.h"
14 #include "core/fxge/include/fx_font.h" 14 #include "core/fxge/fx_font.h"
15 #include "core/fxge/include/ifx_systemfontinfo.h" 15 #include "core/fxge/ifx_systemfontinfo.h"
16 16
17 #include "third_party/base/stl_util.h" 17 #include "third_party/base/stl_util.h"
18 18
19 #define FX_FONT_STYLE_None 0x00 19 #define FX_FONT_STYLE_None 0x00
20 #define FX_FONT_STYLE_Bold 0x01 20 #define FX_FONT_STYLE_Bold 0x01
21 #define FX_FONT_STYLE_Italic 0x02 21 #define FX_FONT_STYLE_Italic 0x02
22 #define FX_FONT_STYLE_BoldBold 0x04 22 #define FX_FONT_STYLE_BoldBold 0x04
23 23
24 namespace { 24 namespace {
25 25
(...skipping 799 matching lines...) Expand 10 before | Expand all | Expand 10 after
825 int PDF_GetStandardFontName(CFX_ByteString* name) { 825 int PDF_GetStandardFontName(CFX_ByteString* name) {
826 AltFontName* found = static_cast<AltFontName*>( 826 AltFontName* found = static_cast<AltFontName*>(
827 FXSYS_bsearch(name->c_str(), g_AltFontNames, FX_ArraySize(g_AltFontNames), 827 FXSYS_bsearch(name->c_str(), g_AltFontNames, FX_ArraySize(g_AltFontNames),
828 sizeof(AltFontName), CompareString)); 828 sizeof(AltFontName), CompareString));
829 if (!found) 829 if (!found)
830 return -1; 830 return -1;
831 831
832 *name = g_Base14FontNames[found->m_Index]; 832 *name = g_Base14FontNames[found->m_Index];
833 return found->m_Index; 833 return found->m_Index;
834 } 834 }
OLDNEW
« no previous file with comments | « core/fxge/ge/cfx_fontcache.cpp ('k') | core/fxge/ge/cfx_fontmgr.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698