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

Side by Side Diff: core/src/fxcodec/jbig2/JBig2_Context.h

Issue 1252613002: FX_BOOL considered harmful. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Manual edits. Created 5 years, 5 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 unified diff | Download patch
« no previous file with comments | « core/src/fxcodec/jbig2/JBig2_BitStream.h ('k') | core/src/fxcodec/jbig2/JBig2_Context.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 PDFium Authors. All rights reserved. 1 // Copyright 2014 PDFium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6 6
7 #ifndef _JBIG2_CONTEXT_H_ 7 #ifndef _JBIG2_CONTEXT_H_
8 #define _JBIG2_CONTEXT_H_ 8 #define _JBIG2_CONTEXT_H_
9 9
10 #include <list> 10 #include <list>
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 CJBig2_BitStream *m_pStream; 116 CJBig2_BitStream *m_pStream;
117 117
118 int32_t m_nState; 118 int32_t m_nState;
119 119
120 CJBig2_List<CJBig2_Segment> *m_pSegmentList; 120 CJBig2_List<CJBig2_Segment> *m_pSegmentList;
121 121
122 CJBig2_List<JBig2PageInfo> *m_pPageInfoList; 122 CJBig2_List<JBig2PageInfo> *m_pPageInfoList;
123 123
124 CJBig2_Image *m_pPage; 124 CJBig2_Image *m_pPage;
125 125
126 FX_BOOL m_bBufSpecified; 126 bool m_bBufSpecified;
127 127
128 int32_t m_nSegmentDecoded; 128 int32_t m_nSegmentDecoded;
129 IFX_Pause* m_pPause; 129 IFX_Pause* m_pPause;
130 int32_t m_PauseStep; 130 int32_t m_PauseStep;
131 FXCODEC_STATUS m_ProcessiveStatus; 131 FXCODEC_STATUS m_ProcessiveStatus;
132 FX_BOOL» m_bFirstPage; 132 bool» m_bFirstPage;
133 CJBig2_ArithDecoder *m_pArithDecoder; 133 CJBig2_ArithDecoder *m_pArithDecoder;
134 CJBig2_GRDProc *m_pGRD; 134 CJBig2_GRDProc *m_pGRD;
135 JBig2ArithCtx *m_gbContext; 135 JBig2ArithCtx *m_gbContext;
136 CJBig2_Segment *m_pSegment; 136 CJBig2_Segment *m_pSegment;
137 FX_DWORD m_dwOffset; 137 FX_DWORD m_dwOffset;
138 JBig2RegionInfo m_ri; 138 JBig2RegionInfo m_ri;
139 std::list<CJBig2_CachePair>* m_pSymbolDictCache; 139 std::list<CJBig2_CachePair>* m_pSymbolDictCache;
140 }; 140 };
141 #endif 141 #endif
OLDNEW
« no previous file with comments | « core/src/fxcodec/jbig2/JBig2_BitStream.h ('k') | core/src/fxcodec/jbig2/JBig2_Context.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698