diff options
author | tsepez <tsepez@chromium.org> | 2016-11-16 14:45:42 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-11-16 14:45:42 -0800 |
commit | cc4d0a44f3025821f88f3ed1ee78dfdc416487c7 (patch) | |
tree | 505c6181f0dc078c351312f0e960cd37a89cf08b /core/fpdfapi/parser/cfdf_document.h | |
parent | 242b95e2a9df3b57dd9aa28adea58ad51f84a221 (diff) | |
download | pdfium-cc4d0a44f3025821f88f3ed1ee78dfdc416487c7.tar.xz |
Move ByteStringPool from document to indirect object holder.
Since the indirect object holder is now in the object creation
business, this will allow it to intern strings in a subsequent
CL.
Review-Url: https://codereview.chromium.org/2509773003
Diffstat (limited to 'core/fpdfapi/parser/cfdf_document.h')
-rw-r--r-- | core/fpdfapi/parser/cfdf_document.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/core/fpdfapi/parser/cfdf_document.h b/core/fpdfapi/parser/cfdf_document.h index 181c4697e2..075119376f 100644 --- a/core/fpdfapi/parser/cfdf_document.h +++ b/core/fpdfapi/parser/cfdf_document.h @@ -9,8 +9,6 @@ #include "core/fpdfapi/parser/cpdf_indirect_object_holder.h" #include "core/fpdfapi/parser/cpdf_object.h" -#include "core/fxcrt/cfx_string_pool_template.h" -#include "core/fxcrt/cfx_weak_ptr.h" #include "core/fxcrt/fx_basic.h" class CPDF_Dictionary; @@ -25,9 +23,6 @@ class CFDF_Document : public CPDF_IndirectObjectHolder { bool WriteBuf(CFX_ByteTextBuf& buf) const; CPDF_Dictionary* GetRoot() const { return m_pRootDict; } - CFX_WeakPtr<CFX_ByteStringPool> GetByteStringPool() const { - return m_pByteStringPool; - } protected: CFDF_Document(); @@ -36,7 +31,6 @@ class CFDF_Document : public CPDF_IndirectObjectHolder { CPDF_Dictionary* m_pRootDict; IFX_SeekableReadStream* m_pFile; bool m_bOwnFile; - CFX_WeakPtr<CFX_ByteStringPool> m_pByteStringPool; }; #endif // CORE_FPDFAPI_PARSER_CFDF_DOCUMENT_H_ |