| Index: core/fpdfapi/fpdf_page/cpdf_contentmarkitem.h
|
| diff --git a/core/fpdfapi/fpdf_page/cpdf_contentmarkitem.h b/core/fpdfapi/fpdf_page/cpdf_contentmarkitem.h
|
| index 1cd80a25a4eb039f8c078a925661c563b83938bb..ce59a0b778060b91fef4a61303cc086245a025ed 100644
|
| --- a/core/fpdfapi/fpdf_page/cpdf_contentmarkitem.h
|
| +++ b/core/fpdfapi/fpdf_page/cpdf_contentmarkitem.h
|
| @@ -31,16 +31,14 @@ class CPDF_ContentMarkItem {
|
| FX_BOOL HasMCID() const;
|
|
|
| void SetName(const CFX_ByteString& name) { m_MarkName = name; }
|
| - void SetDirectDict(
|
| - std::unique_ptr<CPDF_Dictionary, ReleaseDeleter<CPDF_Dictionary>> pDict);
|
| + void SetDirectDict(std::unique_ptr<CPDF_Dictionary> pDict);
|
| void SetPropertiesDict(CPDF_Dictionary* pDict);
|
|
|
| private:
|
| CFX_ByteString m_MarkName;
|
| ParamType m_ParamType;
|
| CPDF_Dictionary* m_pPropertiesDict; // not owned.
|
| - std::unique_ptr<CPDF_Dictionary, ReleaseDeleter<CPDF_Dictionary>>
|
| - m_pDirectDict;
|
| + std::unique_ptr<CPDF_Dictionary> m_pDirectDict;
|
| };
|
|
|
| #endif // CORE_FPDFAPI_FPDF_PAGE_CPDF_CONTENTMARKITEM_H_
|
|
|