Chromium Code Reviews| Index: core/src/fpdfdoc/doc_utils.h |
| diff --git a/core/src/fpdfdoc/doc_utils.h b/core/src/fpdfdoc/doc_utils.h |
| index 58eee84380b3faf066256a80b1a47d7279593d07..fbb629c6b00abc23642b79546c13e044ab5f7405 100644 |
| --- a/core/src/fpdfdoc/doc_utils.h |
| +++ b/core/src/fpdfdoc/doc_utils.h |
| @@ -9,6 +9,19 @@ |
| #include <vector> |
| +class CPDF_Dictionary; |
| +class CPDF_FormField; |
| + |
| +class CPDF_NumberTree { |
| + public: |
| + CPDF_NumberTree(CPDF_Dictionary* pRoot) { m_pRoot = pRoot; } |
|
Oliver Chang
2016/03/10 00:45:45
initialiser list?
Tom Sepez
2016/03/10 00:54:28
Done.
|
| + |
| + CPDF_Object* LookupValue(int num); |
|
Oliver Chang
2016/03/10 00:45:45
while you're here, can this be made const?
Tom Sepez
2016/03/10 00:54:28
Done.
Oliver Chang
2016/03/10 00:55:25
Sorry, I meant CPDF_Object* LookupValue(int num) c
Tom Sepez
2016/03/10 00:58:40
Done.
|
| + |
| + protected: |
| + CPDF_Dictionary* m_pRoot; |
| +}; |
| + |
| CFX_WideString GetFullName(CPDF_Dictionary* pFieldDict); |
| void InitInterFormDict(CPDF_Dictionary*& pFormDict, CPDF_Document* pDocument); |
| FX_DWORD CountInterFormFonts(CPDF_Dictionary* pFormDict); |