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

Unified Diff: core/fxcodec/jbig2/JBig2_Segment.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_SddProc.cpp ('k') | core/fxcodec/jbig2/JBig2_TrdProc.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: core/fxcodec/jbig2/JBig2_Segment.h
diff --git a/core/fxcodec/jbig2/JBig2_Segment.h b/core/fxcodec/jbig2/JBig2_Segment.h
index 61550ada098d0a64c8bf1080d1082b6f1ae72ef4..d89d6526992876a0f9089f693d612958b6b08a7a 100644
--- a/core/fxcodec/jbig2/JBig2_Segment.h
+++ b/core/fxcodec/jbig2/JBig2_Segment.h
@@ -35,7 +35,7 @@ class CJBig2_Segment {
~CJBig2_Segment();
- FX_DWORD m_dwNumber;
+ uint32_t m_dwNumber;
union {
struct {
uint8_t type : 6;
@@ -45,13 +45,13 @@ class CJBig2_Segment {
uint8_t c;
} m_cFlags;
int32_t m_nReferred_to_segment_count;
- FX_DWORD* m_pReferred_to_segment_numbers;
- FX_DWORD m_dwPage_association;
- FX_DWORD m_dwData_length;
+ uint32_t* m_pReferred_to_segment_numbers;
+ uint32_t m_dwPage_association;
+ uint32_t m_dwData_length;
- FX_DWORD m_dwHeader_Length;
- FX_DWORD m_dwObjNum;
- FX_DWORD m_dwDataOffset;
+ uint32_t m_dwHeader_Length;
+ uint32_t m_dwObjNum;
+ uint32_t m_dwDataOffset;
JBig2_SegmentState m_State;
JBig2_ResultType m_nResultType;
union {
« no previous file with comments | « core/fxcodec/jbig2/JBig2_SddProc.cpp ('k') | core/fxcodec/jbig2/JBig2_TrdProc.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698