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

Unified Diff: core/include/fxcrt/fx_arb.h

Issue 1814233005: Make a few more const tables smaller. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: format Created 4 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « core/fxcodec/jbig2/JBig2_SddProc.cpp ('k') | fpdfsdk/javascript/JS_Value.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: core/include/fxcrt/fx_arb.h
diff --git a/core/include/fxcrt/fx_arb.h b/core/include/fxcrt/fx_arb.h
index 112118d5f9b985925f4290e33ae89cf4965cf33b..57391dea19c8ae2b92151885eee41194be8b6d0a 100644
--- a/core/include/fxcrt/fx_arb.h
+++ b/core/include/fxcrt/fx_arb.h
@@ -13,20 +13,20 @@
class IFX_ArabicChar;
struct FX_ARBFORMTABLE {
- FX_WCHAR wIsolated;
- FX_WCHAR wFinal;
- FX_WCHAR wInitial;
- FX_WCHAR wMedial;
+ uint16_t wIsolated;
+ uint16_t wFinal;
+ uint16_t wInitial;
+ uint16_t wMedial;
};
struct FX_ARAALEF {
- FX_WCHAR wAlef;
- FX_WCHAR wIsolated;
+ uint16_t wAlef;
+ uint16_t wIsolated;
};
struct FX_ARASHADDA {
- FX_WCHAR wShadda;
- FX_WCHAR wIsolated;
+ uint16_t wShadda;
+ uint16_t wIsolated;
};
const FX_ARBFORMTABLE* FX_GetArabicFormTable(FX_WCHAR unicode);
« no previous file with comments | « core/fxcodec/jbig2/JBig2_SddProc.cpp ('k') | fpdfsdk/javascript/JS_Value.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698