diff options
Diffstat (limited to 'core/fpdfapi/parser')
-rw-r--r-- | core/fpdfapi/parser/cpdf_hint_tables.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/core/fpdfapi/parser/cpdf_hint_tables.h b/core/fpdfapi/parser/cpdf_hint_tables.h index e0bc6e0751..25f276ce55 100644 --- a/core/fpdfapi/parser/cpdf_hint_tables.h +++ b/core/fpdfapi/parser/cpdf_hint_tables.h @@ -10,6 +10,7 @@ #include <vector> #include "core/fpdfapi/parser/cpdf_data_avail.h" +#include "core/fxcrt/cfx_unowned_ptr.h" #include "core/fxcrt/fx_basic.h" #include "core/fxcrt/fx_stream.h" @@ -51,10 +52,10 @@ class CPDF_HintTables { const std::vector<FX_FILESIZE>& szArray); // Owner, outlives this object. - CPDF_DataAvail* const m_pDataAvail; + CFX_UnownedPtr<CPDF_DataAvail> const m_pDataAvail; // Owned by |m_pDataAvail|. - CPDF_LinearizedHeader* const m_pLinearized; + CFX_UnownedPtr<CPDF_LinearizedHeader> const m_pLinearized; uint32_t m_nFirstPageSharedObjs; FX_FILESIZE m_szFirstPageObjOffset; |