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

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

Issue 1425153006: Fix all relative includes to third_party. (Closed) Base URL: https://pdfium.googlesource.com/pdfium@master
Patch Set: rebase Created 5 years, 1 month 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/codec/fx_codec_jpx_opj.cpp ('k') | core/src/fxcodec/jbig2/JBig2_GrdProc.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 CORE_SRC_FXCODEC_JBIG2_JBIG2_CONTEXT_H_ 7 #ifndef CORE_SRC_FXCODEC_JBIG2_JBIG2_CONTEXT_H_
8 #define CORE_SRC_FXCODEC_JBIG2_JBIG2_CONTEXT_H_ 8 #define CORE_SRC_FXCODEC_JBIG2_JBIG2_CONTEXT_H_
9 9
10 #include <list> 10 #include <list>
11 #include <utility> 11 #include <utility>
12 12
13 #include "../../../../third_party/base/nonstd_unique_ptr.h"
14 #include "../../../include/fpdfapi/fpdf_objects.h" 13 #include "../../../include/fpdfapi/fpdf_objects.h"
15 #include "../../../include/fxcodec/fx_codec_def.h" 14 #include "../../../include/fxcodec/fx_codec_def.h"
16 #include "JBig2_List.h" 15 #include "JBig2_List.h"
17 #include "JBig2_Page.h" 16 #include "JBig2_Page.h"
18 #include "JBig2_Segment.h" 17 #include "JBig2_Segment.h"
18 #include "third_party/base/nonstd_unique_ptr.h"
19 19
20 class CJBig2_ArithDecoder; 20 class CJBig2_ArithDecoder;
21 class CJBig2_GRDProc; 21 class CJBig2_GRDProc;
22 class IFX_Pause; 22 class IFX_Pause;
23 23
24 // Cache is keyed by the ObjNum of a stream and an index within the stream. 24 // Cache is keyed by the ObjNum of a stream and an index within the stream.
25 using CJBig2_CacheKey = std::pair<FX_DWORD, FX_DWORD>; 25 using CJBig2_CacheKey = std::pair<FX_DWORD, FX_DWORD>;
26 // NB: CJBig2_SymbolDict* is owned. 26 // NB: CJBig2_SymbolDict* is owned.
27 using CJBig2_CachePair = std::pair<CJBig2_CacheKey, CJBig2_SymbolDict*>; 27 using CJBig2_CachePair = std::pair<CJBig2_CacheKey, CJBig2_SymbolDict*>;
28 28
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 nonstd::unique_ptr<CJBig2_GRDProc> m_pGRD; 124 nonstd::unique_ptr<CJBig2_GRDProc> m_pGRD;
125 JBig2ArithCtx* m_gbContext; 125 JBig2ArithCtx* m_gbContext;
126 nonstd::unique_ptr<CJBig2_Segment> m_pSegment; 126 nonstd::unique_ptr<CJBig2_Segment> m_pSegment;
127 FX_DWORD m_dwOffset; 127 FX_DWORD m_dwOffset;
128 JBig2RegionInfo m_ri; 128 JBig2RegionInfo m_ri;
129 std::list<CJBig2_CachePair>* const m_pSymbolDictCache; 129 std::list<CJBig2_CachePair>* const m_pSymbolDictCache;
130 bool m_bIsGlobal; 130 bool m_bIsGlobal;
131 }; 131 };
132 132
133 #endif // CORE_SRC_FXCODEC_JBIG2_JBIG2_CONTEXT_H_ 133 #endif // CORE_SRC_FXCODEC_JBIG2_JBIG2_CONTEXT_H_
OLDNEW
« no previous file with comments | « core/src/fxcodec/codec/fx_codec_jpx_opj.cpp ('k') | core/src/fxcodec/jbig2/JBig2_GrdProc.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698