| 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/include/fpdfapi/cpdf_document.h" | 10 #include "core/include/fpdfapi/cpdf_document.h" |
| 11 #include "core/include/fpdfapi/cpdf_name.h" |
| 12 #include "core/include/fpdfapi/cpdf_number.h" |
| 13 #include "core/include/fpdfapi/cpdf_reference.h" |
| 14 #include "core/include/fpdfapi/cpdf_string.h" |
| 11 #include "core/include/fpdfapi/fpdf_module.h" | 15 #include "core/include/fpdfapi/fpdf_module.h" |
| 12 #include "core/include/fpdfdoc/fpdf_doc.h" | 16 #include "core/include/fpdfdoc/fpdf_doc.h" |
| 13 #include "testing/gtest/include/gtest/gtest.h" | 17 #include "testing/gtest/include/gtest/gtest.h" |
| 14 #include "testing/test_support.h" | 18 #include "testing/test_support.h" |
| 15 | 19 |
| 16 #ifdef PDF_ENABLE_XFA | 20 #ifdef PDF_ENABLE_XFA |
| 17 #include "fpdfsdk/include/fpdfxfa/fpdfxfa_app.h" | 21 #include "fpdfsdk/include/fpdfxfa/fpdfxfa_app.h" |
| 18 #include "fpdfsdk/include/fpdfxfa/fpdfxfa_doc.h" | 22 #include "fpdfsdk/include/fpdfxfa/fpdfxfa_doc.h" |
| 19 #endif // PDF_ENABLE_XFA | 23 #endif // PDF_ENABLE_XFA |
| 20 | 24 |
| (...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 213 // Title with no match. | 217 // Title with no match. |
| 214 std::unique_ptr<unsigned short, pdfium::FreeDeleter> title = | 218 std::unique_ptr<unsigned short, pdfium::FreeDeleter> title = |
| 215 GetFPDFWideString(L"Chapter 8"); | 219 GetFPDFWideString(L"Chapter 8"); |
| 216 EXPECT_EQ(nullptr, FPDFBookmark_Find(m_pDoc.get(), title.get())); | 220 EXPECT_EQ(nullptr, FPDFBookmark_Find(m_pDoc.get(), title.get())); |
| 217 | 221 |
| 218 // Title with a match. | 222 // Title with a match. |
| 219 title = GetFPDFWideString(L"Chapter 3"); | 223 title = GetFPDFWideString(L"Chapter 3"); |
| 220 EXPECT_EQ(bookmarks[3].obj, FPDFBookmark_Find(m_pDoc.get(), title.get())); | 224 EXPECT_EQ(bookmarks[3].obj, FPDFBookmark_Find(m_pDoc.get(), title.get())); |
| 221 } | 225 } |
| 222 } | 226 } |
| OLD | NEW |