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

Unified Diff: core/fxcodec/jbig2/JBig2_HuffmanTable.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_HuffmanDecoder.cpp ('k') | core/fxcodec/jbig2/JBig2_HuffmanTable.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: core/fxcodec/jbig2/JBig2_HuffmanTable.h
diff --git a/core/fxcodec/jbig2/JBig2_HuffmanTable.h b/core/fxcodec/jbig2/JBig2_HuffmanTable.h
index 7a31cf60dd26aa984b10d167fdba573b51eb405e..9b29847e4df8a38ad18f0d22b95cbc6dd08e8cc9 100644
--- a/core/fxcodec/jbig2/JBig2_HuffmanTable.h
+++ b/core/fxcodec/jbig2/JBig2_HuffmanTable.h
@@ -17,7 +17,7 @@ struct JBig2TableLine;
class CJBig2_HuffmanTable {
public:
CJBig2_HuffmanTable(const JBig2TableLine* pTable,
- FX_DWORD nLines,
+ uint32_t nLines,
bool bHTOOB);
explicit CJBig2_HuffmanTable(CJBig2_BitStream* pStream);
@@ -25,7 +25,7 @@ class CJBig2_HuffmanTable {
~CJBig2_HuffmanTable();
bool IsHTOOB() const { return HTOOB; }
- FX_DWORD Size() const { return NTEMP; }
+ uint32_t Size() const { return NTEMP; }
const std::vector<int>& GetCODES() const { return CODES; }
const std::vector<int>& GetPREFLEN() const { return PREFLEN; }
const std::vector<int>& GetRANGELEN() const { return RANGELEN; }
@@ -40,7 +40,7 @@ class CJBig2_HuffmanTable {
bool m_bOK;
bool HTOOB;
- FX_DWORD NTEMP;
+ uint32_t NTEMP;
std::vector<int> CODES;
std::vector<int> PREFLEN;
std::vector<int> RANGELEN;
« no previous file with comments | « core/fxcodec/jbig2/JBig2_HuffmanDecoder.cpp ('k') | core/fxcodec/jbig2/JBig2_HuffmanTable.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698