| Index: core/fpdfapi/page/cpdf_contentmarkitem.h
|
| diff --git a/core/fpdfapi/page/cpdf_contentmarkitem.h b/core/fpdfapi/page/cpdf_contentmarkitem.h
|
| index ef691e252c4dfd7ed5e384668b1c2605853db44b..3f117cd9b4f6be4ad605b4244716623dfe0de587 100644
|
| --- a/core/fpdfapi/page/cpdf_contentmarkitem.h
|
| +++ b/core/fpdfapi/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_PAGE_CPDF_CONTENTMARKITEM_H_
|
|
|