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

Side by Side Diff: core/fpdfapi/fpdf_font/cpdf_font.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/fpdfapi/fpdf_font/cpdf_font.h ('k') | core/fpdfapi/fpdf_font/cpdf_fontencoding.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/fpdfapi/fpdf_font/cpdf_font.h" 7 #include "core/fpdfapi/fpdf_font/cpdf_font.h"
8 8
9 #include <memory> 9 #include <memory>
10 #include <vector> 10 #include <vector>
11 11
12 #include "core/fpdfapi/cpdf_modulemgr.h" 12 #include "core/fpdfapi/cpdf_modulemgr.h"
13 #include "core/fpdfapi/fpdf_font/cpdf_fontencoding.h" 13 #include "core/fpdfapi/fpdf_font/cpdf_fontencoding.h"
14 #include "core/fpdfapi/fpdf_font/cpdf_truetypefont.h" 14 #include "core/fpdfapi/fpdf_font/cpdf_truetypefont.h"
15 #include "core/fpdfapi/fpdf_font/cpdf_type1font.h" 15 #include "core/fpdfapi/fpdf_font/cpdf_type1font.h"
16 #include "core/fpdfapi/fpdf_font/cpdf_type3font.h" 16 #include "core/fpdfapi/fpdf_font/cpdf_type3font.h"
17 #include "core/fpdfapi/fpdf_font/font_int.h" 17 #include "core/fpdfapi/fpdf_font/font_int.h"
18 #include "core/fpdfapi/fpdf_page/cpdf_pagemodule.h" 18 #include "core/fpdfapi/fpdf_page/cpdf_pagemodule.h"
19 #include "core/fpdfapi/fpdf_page/pageint.h" 19 #include "core/fpdfapi/fpdf_page/pageint.h"
20 #include "core/fpdfapi/fpdf_parser/cpdf_array.h" 20 #include "core/fpdfapi/fpdf_parser/cpdf_array.h"
21 #include "core/fpdfapi/fpdf_parser/cpdf_dictionary.h" 21 #include "core/fpdfapi/fpdf_parser/cpdf_dictionary.h"
22 #include "core/fpdfapi/fpdf_parser/cpdf_document.h" 22 #include "core/fpdfapi/fpdf_parser/cpdf_document.h"
23 #include "core/fpdfapi/fpdf_parser/cpdf_name.h" 23 #include "core/fpdfapi/fpdf_parser/cpdf_name.h"
24 #include "core/fpdfapi/fpdf_parser/cpdf_stream_acc.h" 24 #include "core/fpdfapi/fpdf_parser/cpdf_stream_acc.h"
25 #include "core/fxcrt/fx_memory.h" 25 #include "core/fxcrt/fx_memory.h"
26 #include "core/fxge/include/fx_freetype.h" 26 #include "core/fxge/fx_freetype.h"
27 #include "third_party/base/stl_util.h" 27 #include "third_party/base/stl_util.h"
28 28
29 namespace { 29 namespace {
30 30
31 const uint8_t kChineseFontNames[][5] = {{0xCB, 0xCE, 0xCC, 0xE5, 0x00}, 31 const uint8_t kChineseFontNames[][5] = {{0xCB, 0xCE, 0xCC, 0xE5, 0x00},
32 {0xBF, 0xAC, 0xCC, 0xE5, 0x00}, 32 {0xBF, 0xAC, 0xCC, 0xE5, 0x00},
33 {0xBA, 0xDA, 0xCC, 0xE5, 0x00}, 33 {0xBA, 0xDA, 0xCC, 0xE5, 0x00},
34 {0xB7, 0xC2, 0xCB, 0xCE, 0x00}, 34 {0xB7, 0xC2, 0xCB, 0xCE, 0x00},
35 {0xD0, 0xC2, 0xCB, 0xCE, 0x00}}; 35 {0xD0, 0xC2, 0xCB, 0xCE, 0x00}};
36 36
(...skipping 429 matching lines...) Expand 10 before | Expand all | Expand 10 after
466 if (fallbackFont < 0 || 466 if (fallbackFont < 0 ||
467 fallbackFont >= pdfium::CollectionSize<int>(m_FontFallbacks)) { 467 fallbackFont >= pdfium::CollectionSize<int>(m_FontFallbacks)) {
468 return -1; 468 return -1;
469 } 469 }
470 int glyph = 470 int glyph =
471 FXFT_Get_Char_Index(m_FontFallbacks[fallbackFont]->GetFace(), charcode); 471 FXFT_Get_Char_Index(m_FontFallbacks[fallbackFont]->GetFace(), charcode);
472 if (glyph == 0 || glyph == 0xffff) 472 if (glyph == 0 || glyph == 0xffff)
473 return -1; 473 return -1;
474 return glyph; 474 return glyph;
475 } 475 }
OLDNEW
« no previous file with comments | « core/fpdfapi/fpdf_font/cpdf_font.h ('k') | core/fpdfapi/fpdf_font/cpdf_fontencoding.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698