diff options
author | Lei Zhang <thestig@chromium.org> | 2017-12-04 06:04:35 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-12-04 06:04:35 +0000 |
commit | 56b08b1f2bb8a4eb9330963bff3a626603499730 (patch) | |
tree | 406c3453ad65a08c56aa3c15b6f70d7b149b84a7 /xfa/fxfa/parser/cxfa_document_parser.cpp | |
parent | b8d86800487df4021860f08407c323ed82243c79 (diff) | |
download | pdfium-56b08b1f2bb8a4eb9330963bff3a626603499730.tar.xz |
Make CXFA_SimpleParser members const or Unowned.
Fix ownership issues, and simplify CXFA_SimpleParser ctors.
Change-Id: Ie083080297c5c2586ae3e6a8355839fcb86ee9ea
Reviewed-on: https://pdfium-review.googlesource.com/20130
Reviewed-by: dsinclair <dsinclair@chromium.org>
Commit-Queue: Lei Zhang <thestig@chromium.org>
Diffstat (limited to 'xfa/fxfa/parser/cxfa_document_parser.cpp')
-rw-r--r-- | xfa/fxfa/parser/cxfa_document_parser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xfa/fxfa/parser/cxfa_document_parser.cpp b/xfa/fxfa/parser/cxfa_document_parser.cpp index 0cc03b94d0..df7d789781 100644 --- a/xfa/fxfa/parser/cxfa_document_parser.cpp +++ b/xfa/fxfa/parser/cxfa_document_parser.cpp @@ -12,7 +12,7 @@ #include "xfa/fxfa/parser/cxfa_document.h" CXFA_DocumentParser::CXFA_DocumentParser(CXFA_FFNotify* pNotify) - : m_nodeParser(nullptr, true), m_pNotify(pNotify) {} + : m_pNotify(pNotify) {} CXFA_DocumentParser::~CXFA_DocumentParser() { } |