summaryrefslogtreecommitdiff
path: root/core/src/fxcodec/jbig2/JBig2_Image.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_Image.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_Image.h')
-rw-r--r--core/src/fxcodec/jbig2/JBig2_Image.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/core/src/fxcodec/jbig2/JBig2_Image.h b/core/src/fxcodec/jbig2/JBig2_Image.h
index c5d27f36b5..e77da9059c 100644
--- a/core/src/fxcodec/jbig2/JBig2_Image.h
+++ b/core/src/fxcodec/jbig2/JBig2_Image.h
@@ -6,17 +6,19 @@
#ifndef _JBIG2_IMAGE_H_
#define _JBIG2_IMAGE_H_
+
#include "JBig2_Define.h"
-#include "JBig2_Module.h"
-typedef enum {
+
+enum JBig2ComposeOp {
JBIG2_COMPOSE_OR = 0,
JBIG2_COMPOSE_AND = 1,
JBIG2_COMPOSE_XOR = 2,
JBIG2_COMPOSE_XNOR = 3,
JBIG2_COMPOSE_REPLACE = 4
-} JBig2ComposeOp;
+};
+
struct FX_RECT;
-class CJBig2_Image : public CJBig2_Object {
+class CJBig2_Image {
public:
CJBig2_Image(int32_t w, int32_t h);