diff options
author | tsepez <tsepez@chromium.org> | 2017-01-18 14:30:36 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2017-01-18 14:30:36 -0800 |
commit | 85c532b35b53836bebfdb8f8832905d5f313cf47 (patch) | |
tree | 0b541a077feaa50eada829077d9144d621481626 /xfa/fxfa/xfa_checksum.h | |
parent | e507dc5004184ae3f8fd1cd19b723b4be69a46da (diff) | |
download | pdfium-85c532b35b53836bebfdb8f8832905d5f313cf47.tar.xz |
use unique_ptr in xfa_checksum.h
Review-Url: https://codereview.chromium.org/2613143002
Diffstat (limited to 'xfa/fxfa/xfa_checksum.h')
-rw-r--r-- | xfa/fxfa/xfa_checksum.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/xfa/fxfa/xfa_checksum.h b/xfa/fxfa/xfa_checksum.h index 45c3db59c9..31cf101553 100644 --- a/xfa/fxfa/xfa_checksum.h +++ b/xfa/fxfa/xfa_checksum.h @@ -7,6 +7,8 @@ #ifndef XFA_FXFA_XFA_CHECKSUM_H_ #define XFA_FXFA_XFA_CHECKSUM_H_ +#include <memory> + #include "core/fdrm/crypto/fx_crypt.h" #include "xfa/fde/xml/cfx_saxreader.h" #include "xfa/fxfa/fxfa.h" @@ -70,8 +72,8 @@ class CXFA_ChecksumContext { CFX_ByteString GetChecksum() const; protected: - CFX_SAXReader* m_pSAXReader; - CRYPT_sha1_context* m_pByteContext; + std::unique_ptr<CFX_SAXReader> m_pSAXReader; + std::unique_ptr<CRYPT_sha1_context> m_pByteContext; CFX_ByteString m_bsChecksum; }; |