Index: core/fpdfapi/parser/cpdf_stream_acc.h |
diff --git a/core/fpdfapi/parser/cpdf_stream_acc.h b/core/fpdfapi/parser/cpdf_stream_acc.h |
index 654055f96b6c89dd6db1e57e67616931ef922ba9..24ae5d2ed87aecc46dd59d93598a65baecdcbd06 100644 |
--- a/core/fpdfapi/parser/cpdf_stream_acc.h |
+++ b/core/fpdfapi/parser/cpdf_stream_acc.h |
@@ -7,6 +7,8 @@ |
#ifndef CORE_FPDFAPI_PARSER_CPDF_STREAM_ACC_H_ |
#define CORE_FPDFAPI_PARSER_CPDF_STREAM_ACC_H_ |
+#include <memory> |
+ |
#include "core/fpdfapi/parser/cpdf_dictionary.h" |
#include "core/fpdfapi/parser/cpdf_stream.h" |
#include "core/fxcrt/fx_string.h" |
@@ -31,7 +33,7 @@ class CPDF_StreamAcc { |
uint32_t GetSize() const; |
const CFX_ByteString& GetImageDecoder() const { return m_ImageDecoder; } |
const CPDF_Dictionary* GetImageParam() const { return m_pImageParam; } |
- uint8_t* DetachData(); |
+ std::unique_ptr<uint8_t, FxFreeDeleter> DetachData(); |
protected: |
uint8_t* m_pData; |