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

Side by Side Diff: fpdfsdk/pdfwindow/PWL_FontMap.cpp

Issue 2392603004: Move core/fpdfapi/fpdf_parser to core/fpdfapi/parser (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 | « fpdfsdk/javascript/Field.cpp ('k') | fpdfsdk/pdfwindow/PWL_Icon.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 #include "fpdfsdk/pdfwindow/PWL_FontMap.h" 7 #include "fpdfsdk/pdfwindow/PWL_FontMap.h"
8 8
9 #include "core/fpdfapi/cpdf_modulemgr.h" 9 #include "core/fpdfapi/cpdf_modulemgr.h"
10 #include "core/fpdfapi/font/cpdf_font.h" 10 #include "core/fpdfapi/font/cpdf_font.h"
11 #include "core/fpdfapi/font/cpdf_fontencoding.h" 11 #include "core/fpdfapi/font/cpdf_fontencoding.h"
12 #include "core/fpdfapi/fpdf_parser/cpdf_document.h" 12 #include "core/fpdfapi/parser/cpdf_document.h"
13 #include "core/fpdfapi/fpdf_parser/cpdf_parser.h" 13 #include "core/fpdfapi/parser/cpdf_parser.h"
14 #include "core/fpdfdoc/ipvt_fontmap.h" 14 #include "core/fpdfdoc/ipvt_fontmap.h"
15 #include "fpdfsdk/pdfwindow/PWL_Wnd.h" 15 #include "fpdfsdk/pdfwindow/PWL_Wnd.h"
16 #include "third_party/base/ptr_util.h" 16 #include "third_party/base/ptr_util.h"
17 17
18 namespace { 18 namespace {
19 19
20 const char kDefaultFontName[] = "Helvetica"; 20 const char kDefaultFontName[] = "Helvetica";
21 21
22 const char* const g_sDEStandardFontName[] = {"Courier", 22 const char* const g_sDEStandardFontName[] = {"Courier",
23 "Courier-Bold", 23 "Courier-Bold",
(...skipping 416 matching lines...) Expand 10 before | Expand all | Expand 10 after
440 return FXFONT_RUSSIAN_CHARSET; 440 return FXFONT_RUSSIAN_CHARSET;
441 441
442 if (word >= 0x0100 && word <= 0x024F) 442 if (word >= 0x0100 && word <= 0x024F)
443 return FXFONT_EASTEUROPE_CHARSET; 443 return FXFONT_EASTEUROPE_CHARSET;
444 444
445 if (word >= 0x1E00 && word <= 0x1EFF) 445 if (word >= 0x1E00 && word <= 0x1EFF)
446 return FXFONT_VIETNAMESE_CHARSET; 446 return FXFONT_VIETNAMESE_CHARSET;
447 447
448 return FXFONT_ANSI_CHARSET; 448 return FXFONT_ANSI_CHARSET;
449 } 449 }
OLDNEW
« no previous file with comments | « fpdfsdk/javascript/Field.cpp ('k') | fpdfsdk/pdfwindow/PWL_Icon.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698