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

Unified Diff: core/fxcodec/jbig2/JBig2_GsidProc.h

Issue 1832173003: Remove FX_DWORD from core/ and delete definition (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: 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_GrrdProc.cpp ('k') | core/fxcodec/jbig2/JBig2_GsidProc.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: core/fxcodec/jbig2/JBig2_GsidProc.h
diff --git a/core/fxcodec/jbig2/JBig2_GsidProc.h b/core/fxcodec/jbig2/JBig2_GsidProc.h
index 8124db54d2ac57dd51ee89b3248ac3f70f883897..b3bd022f039f07588aba236bf6d17a637acad361 100644
--- a/core/fxcodec/jbig2/JBig2_GsidProc.h
+++ b/core/fxcodec/jbig2/JBig2_GsidProc.h
@@ -17,18 +17,18 @@ struct JBig2ArithCtx;
class CJBig2_GSIDProc {
public:
- FX_DWORD* decode_Arith(CJBig2_ArithDecoder* pArithDecoder,
+ uint32_t* decode_Arith(CJBig2_ArithDecoder* pArithDecoder,
JBig2ArithCtx* gbContext,
IFX_Pause* pPause);
- FX_DWORD* decode_MMR(CJBig2_BitStream* pStream, IFX_Pause* pPause);
+ uint32_t* decode_MMR(CJBig2_BitStream* pStream, IFX_Pause* pPause);
public:
FX_BOOL GSMMR;
FX_BOOL GSUSESKIP;
uint8_t GSBPP;
- FX_DWORD GSW;
- FX_DWORD GSH;
+ uint32_t GSW;
+ uint32_t GSH;
uint8_t GSTEMPLATE;
CJBig2_Image* GSKIP;
};
« no previous file with comments | « core/fxcodec/jbig2/JBig2_GrrdProc.cpp ('k') | core/fxcodec/jbig2/JBig2_GsidProc.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698