summaryrefslogtreecommitdiff
path: root/core/fxcodec/jbig2/JBig2_HtrdProc.h
diff options
context:
space:
mode:
authorNicolas Pena <npm@chromium.org>2017-07-14 10:00:21 -0400
committerChromium commit bot <commit-bot@chromium.org>2017-07-14 14:18:45 +0000
commitb6db208773e94b9d25f7dbd740859adbb8a60fdf (patch)
tree8f0426521a18b70303cea0fcccd8f29e3eeead24 /core/fxcodec/jbig2/JBig2_HtrdProc.h
parent2b918c8d05c922287efbc8858f029026cee31442 (diff)
downloadpdfium-b6db208773e94b9d25f7dbd740859adbb8a60fdf.tar.xz
More unique_ptrs in JBIG2 code part 2
This CL makes HDPATS in CJBig2_PatternDict be a vector of unique_ptr. Change-Id: Ib23aed6323d4a988b2eedc4bfe95f2098d32c188 Reviewed-on: https://pdfium-review.googlesource.com/7871 Commit-Queue: Nicolás Peña <npm@chromium.org> Reviewed-by: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'core/fxcodec/jbig2/JBig2_HtrdProc.h')
-rw-r--r--core/fxcodec/jbig2/JBig2_HtrdProc.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/fxcodec/jbig2/JBig2_HtrdProc.h b/core/fxcodec/jbig2/JBig2_HtrdProc.h
index eff25a67bb..85e9059d66 100644
--- a/core/fxcodec/jbig2/JBig2_HtrdProc.h
+++ b/core/fxcodec/jbig2/JBig2_HtrdProc.h
@@ -8,6 +8,7 @@
#define CORE_FXCODEC_JBIG2_JBIG2_HTRDPROC_H_
#include <memory>
+#include <vector>
#include "core/fxcodec/jbig2/JBig2_Image.h"
#include "core/fxcrt/fx_system.h"
@@ -31,7 +32,7 @@ class CJBig2_HTRDProc {
bool HMMR;
uint8_t HTEMPLATE;
uint32_t HNUMPATS;
- CJBig2_Image** HPATS;
+ const std::vector<std::unique_ptr<CJBig2_Image>>* HPATS;
bool HDEFPIXEL;
JBig2ComposeOp HCOMBOP;
bool HENABLESKIP;