summaryrefslogtreecommitdiff
path: root/xfa/fgas/crt/fgas_codepage.h
diff options
context:
space:
mode:
authorTom Sepez <tsepez@chromium.org>2016-03-21 12:26:54 -0700
committerTom Sepez <tsepez@chromium.org>2016-03-21 12:26:54 -0700
commit4161c5ca6c5438476bf07b6dacfafb61ea611cc5 (patch)
tree76b021ad93546c362d6e6089c18e362aebe247aa /xfa/fgas/crt/fgas_codepage.h
parenta98600aeb8d815c297834aa5006f5c3ea20dde6d (diff)
downloadpdfium-4161c5ca6c5438476bf07b6dacfafb61ea611cc5.tar.xz
Make a few more const tables smaller.chromium/2689chromium/2688
Remove some tables from .h file (risk of duplication). R=ochang@chromium.org Review URL: https://codereview.chromium.org/1814233005 .
Diffstat (limited to 'xfa/fgas/crt/fgas_codepage.h')
-rw-r--r--xfa/fgas/crt/fgas_codepage.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/xfa/fgas/crt/fgas_codepage.h b/xfa/fgas/crt/fgas_codepage.h
index 479ad37417..ec01816386 100644
--- a/xfa/fgas/crt/fgas_codepage.h
+++ b/xfa/fgas/crt/fgas_codepage.h
@@ -163,7 +163,7 @@ int32_t FX_UTF8Decode(const FX_CHAR* pSrc,
struct FX_STR2CPHASH {
uint32_t uHash;
- uint32_t uCodePage;
+ uint16_t uCodePage;
};
struct FX_CHARSET_MAP {
@@ -172,8 +172,8 @@ struct FX_CHARSET_MAP {
};
struct FX_LANG2CPMAP {
- FX_WORD wLanguage;
- FX_WORD wCodepage;
+ uint16_t wLanguage;
+ uint16_t wCodepage;
};
#endif // XFA_FGAS_CRT_FGAS_CODEPAGE_H_