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

Side by Side Diff: fpdfsdk/fpdfdoc_unittest.cpp

Issue 1799773002: Move fpdfsdk/src up to fpdfsdk/. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Rebase to master Created 4 years, 9 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_embeddertest.cpp ('k') | fpdfsdk/fpdfedit_embeddertest.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/include/fpdfapi/cpdf_document.h" 10 #include "core/include/fpdfapi/cpdf_document.h"
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after
217 // Title with no match. 217 // Title with no match.
218 std::unique_ptr<unsigned short, pdfium::FreeDeleter> title = 218 std::unique_ptr<unsigned short, pdfium::FreeDeleter> title =
219 GetFPDFWideString(L"Chapter 8"); 219 GetFPDFWideString(L"Chapter 8");
220 EXPECT_EQ(nullptr, FPDFBookmark_Find(m_pDoc.get(), title.get())); 220 EXPECT_EQ(nullptr, FPDFBookmark_Find(m_pDoc.get(), title.get()));
221 221
222 // Title with a match. 222 // Title with a match.
223 title = GetFPDFWideString(L"Chapter 3"); 223 title = GetFPDFWideString(L"Chapter 3");
224 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()));
225 } 225 }
226 } 226 }
OLDNEW
« no previous file with comments | « fpdfsdk/fpdfdoc_embeddertest.cpp ('k') | fpdfsdk/fpdfedit_embeddertest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698