diff options
author | tsepez <tsepez@chromium.org> | 2016-10-10 18:45:55 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-10-10 18:45:55 -0700 |
commit | 10a285391c74845898830f8167bcfc467665b0f8 (patch) | |
tree | 50d4d131fd0ecb1b90f36f151a0f7cc530e99853 /core/fpdfdoc | |
parent | 836f7d5d23b0951c8be86ccca54ebad43179febe (diff) | |
download | pdfium-10a285391c74845898830f8167bcfc467665b0f8.tar.xz |
Move ToString() and friends from CPDF_Object.h to CPDF_String.h
Ditto with the other ToXXX functions to CPDF_xxx.h.
Shortly, we will want to introduce another variant:
inline std::unique_ptr<CPDF_String> ToString(
std::unique_ptr<CPDF_Object>);
This will require that CPDF_String be complete which is
not the case in the CPDF_Object.h header. Rather than
dragging all the other .h's into it, move these to the
subclass headers. That way, these will be together
when the new form is added.
Review-Url: https://codereview.chromium.org/2406033002
Diffstat (limited to 'core/fpdfdoc')
-rw-r--r-- | core/fpdfdoc/cpdf_interform.cpp | 1 | ||||
-rw-r--r-- | core/fpdfdoc/doc_tagged.cpp | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/core/fpdfdoc/cpdf_interform.cpp b/core/fpdfdoc/cpdf_interform.cpp index bda0ac2831..b8b4b68e29 100644 --- a/core/fpdfdoc/cpdf_interform.cpp +++ b/core/fpdfdoc/cpdf_interform.cpp @@ -12,6 +12,7 @@ #include "core/fpdfapi/parser/cfdf_document.h" #include "core/fpdfapi/parser/cpdf_array.h" #include "core/fpdfapi/parser/cpdf_document.h" +#include "core/fpdfapi/parser/cpdf_reference.h" #include "core/fpdfapi/parser/cpdf_string.h" #include "core/fpdfdoc/cpdf_filespec.h" #include "core/fpdfdoc/cpdf_formcontrol.h" diff --git a/core/fpdfdoc/doc_tagged.cpp b/core/fpdfdoc/doc_tagged.cpp index ba80c2171b..b38b484150 100644 --- a/core/fpdfdoc/doc_tagged.cpp +++ b/core/fpdfdoc/doc_tagged.cpp @@ -9,6 +9,8 @@ #include "core/fpdfapi/parser/cpdf_array.h" #include "core/fpdfapi/parser/cpdf_dictionary.h" #include "core/fpdfapi/parser/cpdf_document.h" +#include "core/fpdfapi/parser/cpdf_name.h" +#include "core/fpdfapi/parser/cpdf_number.h" #include "core/fpdfapi/parser/cpdf_reference.h" #include "core/fpdfapi/parser/cpdf_stream.h" #include "core/fpdfdoc/cpdf_numbertree.h" |