| OLD | NEW |
| 1 // Copyright 2016 PDFium Authors. All rights reserved. | 1 // Copyright 2016 PDFium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "public/fpdf_doc.h" | 5 #include "public/fpdf_doc.h" |
| 6 | 6 |
| 7 #include <memory> | 7 #include <memory> |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "core/fpdfapi/cpdf_modulemgr.h" | 10 #include "core/fpdfapi/cpdf_modulemgr.h" |
| 11 #include "core/fpdfapi/parser/cpdf_document.h" | 11 #include "core/fpdfapi/parser/cpdf_document.h" |
| 12 #include "core/fpdfapi/parser/cpdf_name.h" | 12 #include "core/fpdfapi/parser/cpdf_name.h" |
| 13 #include "core/fpdfapi/parser/cpdf_number.h" | 13 #include "core/fpdfapi/parser/cpdf_number.h" |
| 14 #include "core/fpdfapi/parser/cpdf_parser.h" | 14 #include "core/fpdfapi/parser/cpdf_parser.h" |
| 15 #include "core/fpdfapi/parser/cpdf_reference.h" | 15 #include "core/fpdfapi/parser/cpdf_reference.h" |
| 16 #include "core/fpdfapi/parser/cpdf_string.h" | 16 #include "core/fpdfapi/parser/cpdf_string.h" |
| 17 #include "testing/gtest/include/gtest/gtest.h" | 17 #include "testing/gtest/include/gtest/gtest.h" |
| 18 #include "testing/test_support.h" | 18 #include "testing/test_support.h" |
| 19 #include "third_party/base/ptr_util.h" | 19 #include "third_party/base/ptr_util.h" |
| 20 | 20 |
| 21 #ifdef PDF_ENABLE_XFA | 21 #ifdef PDF_ENABLE_XFA |
| 22 #include "fpdfsdk/fpdfxfa/cpdfxfa_app.h" | |
| 23 #include "fpdfsdk/fpdfxfa/cpdfxfa_document.h" | 22 #include "fpdfsdk/fpdfxfa/cpdfxfa_document.h" |
| 24 #endif // PDF_ENABLE_XFA | 23 #endif // PDF_ENABLE_XFA |
| 25 | 24 |
| 26 class CPDF_TestDocument : public CPDF_Document { | 25 class CPDF_TestDocument : public CPDF_Document { |
| 27 public: | 26 public: |
| 28 CPDF_TestDocument() : CPDF_Document(nullptr) {} | 27 CPDF_TestDocument() : CPDF_Document(nullptr) {} |
| 29 | 28 |
| 30 void SetRoot(CPDF_Dictionary* root) { m_pRootDict = root; } | 29 void SetRoot(CPDF_Dictionary* root) { m_pRootDict = root; } |
| 31 CPDF_IndirectObjectHolder* GetHolder() { return this; } | 30 CPDF_IndirectObjectHolder* GetHolder() { return this; } |
| 32 }; | 31 }; |
| (...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 224 // Title with no match. | 223 // Title with no match. |
| 225 std::unique_ptr<unsigned short, pdfium::FreeDeleter> title = | 224 std::unique_ptr<unsigned short, pdfium::FreeDeleter> title = |
| 226 GetFPDFWideString(L"Chapter 8"); | 225 GetFPDFWideString(L"Chapter 8"); |
| 227 EXPECT_EQ(nullptr, FPDFBookmark_Find(m_pDoc.get(), title.get())); | 226 EXPECT_EQ(nullptr, FPDFBookmark_Find(m_pDoc.get(), title.get())); |
| 228 | 227 |
| 229 // Title with a match. | 228 // Title with a match. |
| 230 title = GetFPDFWideString(L"Chapter 3"); | 229 title = GetFPDFWideString(L"Chapter 3"); |
| 231 EXPECT_EQ(bookmarks[3].obj, FPDFBookmark_Find(m_pDoc.get(), title.get())); | 230 EXPECT_EQ(bookmarks[3].obj, FPDFBookmark_Find(m_pDoc.get(), title.get())); |
| 232 } | 231 } |
| 233 } | 232 } |
| OLD | NEW |