diff options
author | tsepez <tsepez@chromium.org> | 2017-01-09 07:01:36 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2017-01-09 07:01:36 -0800 |
commit | 0fa471794a88b262f9114b973d74b1c33e4e592b (patch) | |
tree | 0922c56f6e8ba029cd59dc85c8e2c05689cc334a /core/fpdfapi/parser/cpdf_document.h | |
parent | 5037839bb0b91792b81a3e455dead1314fcc7a6d (diff) | |
download | pdfium-0fa471794a88b262f9114b973d74b1c33e4e592b.tar.xz |
Remove CFX_ArrayTemplate from fpdfapi
Review-Url: https://codereview.chromium.org/2611413002
Diffstat (limited to 'core/fpdfapi/parser/cpdf_document.h')
-rw-r--r-- | core/fpdfapi/parser/cpdf_document.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/fpdfapi/parser/cpdf_document.h b/core/fpdfapi/parser/cpdf_document.h index 0da6577360..65455480a4 100644 --- a/core/fpdfapi/parser/cpdf_document.h +++ b/core/fpdfapi/parser/cpdf_document.h @@ -147,7 +147,7 @@ class CPDF_Document : public CPDF_IndirectObjectHolder { std::unique_ptr<CPDF_DocRenderData> m_pDocRender; std::unique_ptr<JBig2_DocumentContext> m_pCodecContext; std::unique_ptr<CPDF_LinkList> m_pLinksContext; - CFX_ArrayTemplate<uint32_t> m_PageList; + std::vector<uint32_t> m_PageList; }; #endif // CORE_FPDFAPI_PARSER_CPDF_DOCUMENT_H_ |