summaryrefslogtreecommitdiff
path: root/core/src/fxcodec/jbig2/JBig2_SymbolDict.h
diff options
context:
space:
mode:
authorLei Zhang <thestig@chromium.org>2015-09-10 16:12:44 -0700
committerLei Zhang <thestig@chromium.org>2015-09-10 16:12:44 -0700
commit70f4404e9a9e69afdfdd07715aa946f6561ce0cb (patch)
tree0c681df1e7bb78e9834555834ad464eb7bf2a929 /core/src/fxcodec/jbig2/JBig2_SymbolDict.h
parent6df59849472958e7de96da6d9fc7b223b7c1f1c3 (diff)
downloadpdfium-70f4404e9a9e69afdfdd07715aa946f6561ce0cb.tar.xz
Remove CJBig2_Object, CJBig2_Module, and friends.
R=tsepez@chromium.org Review URL: https://codereview.chromium.org/1326953006 .
Diffstat (limited to 'core/src/fxcodec/jbig2/JBig2_SymbolDict.h')
-rw-r--r--core/src/fxcodec/jbig2/JBig2_SymbolDict.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/core/src/fxcodec/jbig2/JBig2_SymbolDict.h b/core/src/fxcodec/jbig2/JBig2_SymbolDict.h
index 1a074415bf..19d0f606a5 100644
--- a/core/src/fxcodec/jbig2/JBig2_SymbolDict.h
+++ b/core/src/fxcodec/jbig2/JBig2_SymbolDict.h
@@ -6,10 +6,12 @@
#ifndef _JBIG2_SYMBOL_DICT_H_
#define _JBIG2_SYMBOL_DICT_H_
-#include "JBig2_Define.h"
+
#include "JBig2_ArithDecoder.h"
+#include "JBig2_Define.h"
#include "JBig2_Image.h"
-class CJBig2_SymbolDict : public CJBig2_Object {
+
+class CJBig2_SymbolDict {
public:
CJBig2_SymbolDict();
CJBig2_SymbolDict* DeepCopy();
@@ -19,6 +21,8 @@ class CJBig2_SymbolDict : public CJBig2_Object {
FX_DWORD SDNUMEXSYMS;
CJBig2_Image** SDEXSYMS;
FX_BOOL m_bContextRetained;
- JBig2ArithCtx *m_gbContext, *m_grContext;
+ JBig2ArithCtx* m_gbContext;
+ JBig2ArithCtx* m_grContext;
};
+
#endif