Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(164)

Side by Side Diff: fpdfsdk/fpdfdoc_unittest.cpp

Issue 2183313004: Split fpdfdoc/include/fpdf_doc.h into individual classes. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: review feedback Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « fpdfsdk/fpdfdoc.cpp ('k') | fpdfsdk/fpdfeditpage.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/fpdf_parser/include/cpdf_document.h" 10 #include "core/fpdfapi/fpdf_parser/include/cpdf_document.h"
11 #include "core/fpdfapi/fpdf_parser/include/cpdf_name.h" 11 #include "core/fpdfapi/fpdf_parser/include/cpdf_name.h"
12 #include "core/fpdfapi/fpdf_parser/include/cpdf_number.h" 12 #include "core/fpdfapi/fpdf_parser/include/cpdf_number.h"
13 #include "core/fpdfapi/fpdf_parser/include/cpdf_reference.h" 13 #include "core/fpdfapi/fpdf_parser/include/cpdf_reference.h"
14 #include "core/fpdfapi/fpdf_parser/include/cpdf_string.h" 14 #include "core/fpdfapi/fpdf_parser/include/cpdf_string.h"
15 #include "core/fpdfapi/include/cpdf_modulemgr.h" 15 #include "core/fpdfapi/include/cpdf_modulemgr.h"
16 #include "core/fpdfdoc/include/fpdf_doc.h"
17 #include "testing/gtest/include/gtest/gtest.h" 16 #include "testing/gtest/include/gtest/gtest.h"
18 #include "testing/test_support.h" 17 #include "testing/test_support.h"
19 18
20 #ifdef PDF_ENABLE_XFA 19 #ifdef PDF_ENABLE_XFA
21 #include "fpdfsdk/fpdfxfa/include/fpdfxfa_app.h" 20 #include "fpdfsdk/fpdfxfa/include/fpdfxfa_app.h"
22 #include "fpdfsdk/fpdfxfa/include/fpdfxfa_doc.h" 21 #include "fpdfsdk/fpdfxfa/include/fpdfxfa_doc.h"
23 #endif // PDF_ENABLE_XFA 22 #endif // PDF_ENABLE_XFA
24 23
25 class CPDF_TestDocument : public CPDF_Document { 24 class CPDF_TestDocument : public CPDF_Document {
26 public: 25 public:
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 }
OLDNEW
« no previous file with comments | « fpdfsdk/fpdfdoc.cpp ('k') | fpdfsdk/fpdfeditpage.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698