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

Side by Side Diff: core/fpdfapi/fpdf_font/include/cpdf_fontencoding.h

Issue 2345063002: Use string pools in some dictionaries (Closed)
Patch Set: windows compile 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_fontencoding.cpp ('k') | core/fpdfapi/fpdf_page/cpdf_image.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 #ifndef CORE_FPDFAPI_FPDF_FONT_INCLUDE_CPDF_FONTENCODING_H_ 7 #ifndef CORE_FPDFAPI_FPDF_FONT_INCLUDE_CPDF_FONTENCODING_H_
8 #define CORE_FPDFAPI_FPDF_FONT_INCLUDE_CPDF_FONTENCODING_H_ 8 #define CORE_FPDFAPI_FPDF_FONT_INCLUDE_CPDF_FONTENCODING_H_
9 9
10 #include "core/fxcrt/include/cfx_string_pool_template.h"
11 #include "core/fxcrt/include/cfx_weak_ptr.h"
10 #include "core/fxcrt/include/fx_string.h" 12 #include "core/fxcrt/include/fx_string.h"
11 13
12 #define PDFFONT_ENCODING_BUILTIN 0 14 #define PDFFONT_ENCODING_BUILTIN 0
13 #define PDFFONT_ENCODING_WINANSI 1 15 #define PDFFONT_ENCODING_WINANSI 1
14 #define PDFFONT_ENCODING_MACROMAN 2 16 #define PDFFONT_ENCODING_MACROMAN 2
15 #define PDFFONT_ENCODING_MACEXPERT 3 17 #define PDFFONT_ENCODING_MACEXPERT 3
16 #define PDFFONT_ENCODING_STANDARD 4 18 #define PDFFONT_ENCODING_STANDARD 4
17 #define PDFFONT_ENCODING_ADOBE_SYMBOL 5 19 #define PDFFONT_ENCODING_ADOBE_SYMBOL 5
18 #define PDFFONT_ENCODING_ZAPFDINGBATS 6 20 #define PDFFONT_ENCODING_ZAPFDINGBATS 6
19 #define PDFFONT_ENCODING_PDFDOC 7 21 #define PDFFONT_ENCODING_PDFDOC 7
(...skipping 23 matching lines...) Expand all
43 45
44 FX_WCHAR UnicodeFromCharCode(uint8_t charcode) const { 46 FX_WCHAR UnicodeFromCharCode(uint8_t charcode) const {
45 return m_Unicodes[charcode]; 47 return m_Unicodes[charcode];
46 } 48 }
47 int CharCodeFromUnicode(FX_WCHAR unicode) const; 49 int CharCodeFromUnicode(FX_WCHAR unicode) const;
48 50
49 void SetUnicode(uint8_t charcode, FX_WCHAR unicode) { 51 void SetUnicode(uint8_t charcode, FX_WCHAR unicode) {
50 m_Unicodes[charcode] = unicode; 52 m_Unicodes[charcode] = unicode;
51 } 53 }
52 54
53 CPDF_Object* Realize(); 55 CPDF_Object* Realize(CFX_WeakPtr<CFX_ByteStringPool> pPool);
54 56
55 public: 57 public:
56 FX_WCHAR m_Unicodes[256]; 58 FX_WCHAR m_Unicodes[256];
57 }; 59 };
58 60
59 #endif // CORE_FPDFAPI_FPDF_FONT_INCLUDE_CPDF_FONTENCODING_H_ 61 #endif // CORE_FPDFAPI_FPDF_FONT_INCLUDE_CPDF_FONTENCODING_H_
OLDNEW
« no previous file with comments | « core/fpdfapi/fpdf_font/cpdf_fontencoding.cpp ('k') | core/fpdfapi/fpdf_page/cpdf_image.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698