diff options
Diffstat (limited to 'core/fpdfdoc/cpdf_nametree.h')
-rw-r--r-- | core/fpdfdoc/cpdf_nametree.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/fpdfdoc/cpdf_nametree.h b/core/fpdfdoc/cpdf_nametree.h index add62f1767..72d0d669e9 100644 --- a/core/fpdfdoc/cpdf_nametree.h +++ b/core/fpdfdoc/cpdf_nametree.h @@ -9,8 +9,8 @@ #include <memory> -#include "core/fxcrt/cfx_unowned_ptr.h" #include "core/fxcrt/fx_string.h" +#include "core/fxcrt/unowned_ptr.h" class CPDF_Array; class CPDF_Dictionary; @@ -36,7 +36,7 @@ class CPDF_NameTree { CPDF_Dictionary* GetRoot() const { return m_pRoot.Get(); } private: - CFX_UnownedPtr<CPDF_Dictionary> m_pRoot; + UnownedPtr<CPDF_Dictionary> m_pRoot; }; #endif // CORE_FPDFDOC_CPDF_NAMETREE_H_ |