summaryrefslogtreecommitdiff
path: root/core/src/fxcodec/jbig2/JBig2_Context.h
diff options
context:
space:
mode:
authorLei Zhang <thestig@chromium.org>2015-09-24 01:09:57 -0700
committerLei Zhang <thestig@chromium.org>2015-09-24 01:09:57 -0700
commit630a28442364f03c1d3d9b48873da42755e1fddf (patch)
tree1ac3a05e53f5bc9c43e1f4b022f664dcb4d57e88 /core/src/fxcodec/jbig2/JBig2_Context.h
parentb6b336a0a1849526f66c49588daa2ccdd09d42cd (diff)
downloadpdfium-630a28442364f03c1d3d9b48873da42755e1fddf.tar.xz
Split up JBig2_GeneralDecoder.cpp.
R=tsepez@chromium.org Review URL: https://codereview.chromium.org/1359233002 .
Diffstat (limited to 'core/src/fxcodec/jbig2/JBig2_Context.h')
-rw-r--r--core/src/fxcodec/jbig2/JBig2_Context.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/core/src/fxcodec/jbig2/JBig2_Context.h b/core/src/fxcodec/jbig2/JBig2_Context.h
index 1af6b9444c..48bc794205 100644
--- a/core/src/fxcodec/jbig2/JBig2_Context.h
+++ b/core/src/fxcodec/jbig2/JBig2_Context.h
@@ -4,19 +4,21 @@
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
-#ifndef _JBIG2_CONTEXT_H_
-#define _JBIG2_CONTEXT_H_
+#ifndef CORE_SRC_FXCODEC_JBIG2_JBIG2_CONTEXT_H_
+#define CORE_SRC_FXCODEC_JBIG2_JBIG2_CONTEXT_H_
#include <list>
#include <utility>
#include "../../../../third_party/base/nonstd_unique_ptr.h"
#include "../../../include/fxcodec/fx_codec_def.h"
-#include "JBig2_GeneralDecoder.h"
#include "JBig2_List.h"
#include "JBig2_Page.h"
#include "JBig2_Segment.h"
+class CJBig2_GRDProc;
+class IFX_Pause;
+
using CJBig2_CachePair = std::pair<const uint8_t*, CJBig2_SymbolDict*>;
#define JBIG2_SUCCESS 0
@@ -141,4 +143,5 @@ class CJBig2_Context {
JBig2RegionInfo m_ri;
std::list<CJBig2_CachePair>* m_pSymbolDictCache;
};
-#endif
+
+#endif // CORE_SRC_FXCODEC_JBIG2_JBIG2_CONTEXT_H_