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

Side by Side Diff: core/src/fpdfapi/fpdf_font/fpdf_font_charset.cpp

Issue 1427633010: Fix relative includes within core/ (Closed) Base URL: https://pdfium.googlesource.com/pdfium@master
Patch Set: rebase Created 5 years, 1 month 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/src/fpdfapi/fpdf_font/fpdf_font.cpp ('k') | core/src/fpdfapi/fpdf_font/fpdf_font_cid.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 "../../../include/fpdfapi/fpdf_page.h" 7 #include "core/include/fpdfapi/fpdf_page.h"
8 #include "../../../include/fpdfapi/fpdf_parser.h" 8 #include "core/include/fpdfapi/fpdf_parser.h"
9 #include "../../../include/fpdfapi/fpdf_resource.h" 9 #include "core/include/fpdfapi/fpdf_resource.h"
10 #include "../../../include/fxge/fx_freetype.h" 10 #include "core/include/fxge/fx_freetype.h"
11 11
12 static const struct _UnicodeAlt { 12 static const struct _UnicodeAlt {
13 FX_WORD m_Unicode; 13 FX_WORD m_Unicode;
14 const FX_CHAR* m_Alter; 14 const FX_CHAR* m_Alter;
15 } UnicodeAlts[] = { 15 } UnicodeAlts[] = {
16 {0x00a0, " "}, {0x00a1, "!"}, {0x00a2, "c"}, {0x00a3, "P"}, 16 {0x00a0, " "}, {0x00a1, "!"}, {0x00a2, "c"}, {0x00a3, "P"},
17 {0x00a4, "o"}, {0x00a5, "Y"}, {0x00a6, "|"}, {0x00a7, "S"}, 17 {0x00a4, "o"}, {0x00a5, "Y"}, {0x00a6, "|"}, {0x00a7, "S"},
18 {0x00a9, "(C)"}, {0x00aa, "a"}, {0x00ab, "<<"}, {0x00ac, "-|"}, 18 {0x00a9, "(C)"}, {0x00aa, "a"}, {0x00ab, "<<"}, {0x00ac, "-|"},
19 {0x00ae, "(R)"}, {0x00af, "-"}, {0x00b0, "o"}, {0x00b1, "+/-"}, 19 {0x00ae, "(R)"}, {0x00af, "-"}, {0x00b0, "o"}, {0x00b1, "+/-"},
20 {0x00b2, "^2"}, {0x00b3, "^3"}, {0x00b4, "'"}, {0x00b5, "u"}, 20 {0x00b2, "^2"}, {0x00b3, "^3"}, {0x00b4, "'"}, {0x00b5, "u"},
(...skipping 1752 matching lines...) Expand 10 before | Expand all | Expand 10 after
1773 return PDF_FindCode(PDF_UnicodesForPredefinedCharSet(encoding), unicode); 1773 return PDF_FindCode(PDF_UnicodesForPredefinedCharSet(encoding), unicode);
1774 } 1774 }
1775 FX_WCHAR PDF_UnicodeFromAdobeName(const FX_CHAR* name) { 1775 FX_WCHAR PDF_UnicodeFromAdobeName(const FX_CHAR* name) {
1776 return (FX_WCHAR)(FXFT_unicode_from_adobe_name(name) & 0x7FFFFFFF); 1776 return (FX_WCHAR)(FXFT_unicode_from_adobe_name(name) & 0x7FFFFFFF);
1777 } 1777 }
1778 CFX_ByteString PDF_AdobeNameFromUnicode(FX_WCHAR unicode) { 1778 CFX_ByteString PDF_AdobeNameFromUnicode(FX_WCHAR unicode) {
1779 char glyph_name[64]; 1779 char glyph_name[64];
1780 FXFT_adobe_name_from_unicode(glyph_name, unicode); 1780 FXFT_adobe_name_from_unicode(glyph_name, unicode);
1781 return CFX_ByteString(glyph_name); 1781 return CFX_ByteString(glyph_name);
1782 } 1782 }
OLDNEW
« no previous file with comments | « core/src/fpdfapi/fpdf_font/fpdf_font.cpp ('k') | core/src/fpdfapi/fpdf_font/fpdf_font_cid.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698