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

Side by Side Diff: fpdfsdk/src/fpdftext_embeddertest.cpp

Issue 1136703003: Merge to XFA: Create top-level public/ header directory. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@xfa
Patch Set: Created 5 years, 7 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/src/fpdftext.cpp ('k') | fpdfsdk/src/fpdfview.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 2015 PDFium Authors. All rights reserved. 1 // Copyright 2015 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_text.h"
6 #include "../../public/fpdfview.h"
5 #include "../../testing/embedder_test.h" 7 #include "../../testing/embedder_test.h"
6 #include "../../fpdfsdk/include/fpdfview.h"
7 #include "../../fpdfsdk/include/fpdftext.h"
8 #include "testing/gtest/include/gtest/gtest.h" 8 #include "testing/gtest/include/gtest/gtest.h"
9 9
10 namespace { 10 namespace {
11 11
12 static bool check_unsigned_shorts(const char* expected, 12 static bool check_unsigned_shorts(const char* expected,
13 const unsigned short* actual, 13 const unsigned short* actual,
14 size_t length) { 14 size_t length) {
15 if (length > strlen(expected) + 1) { 15 if (length > strlen(expected) + 1) {
16 return false; 16 return false;
17 } 17 }
(...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after
352 bottom = -2.0; 352 bottom = -2.0;
353 FPDFLink_GetRect(pagelink, -1, 0, &left, &top, &right, &bottom); 353 FPDFLink_GetRect(pagelink, -1, 0, &left, &top, &right, &bottom);
354 EXPECT_EQ(-2.0, left); 354 EXPECT_EQ(-2.0, left);
355 EXPECT_EQ(-2.0, right); 355 EXPECT_EQ(-2.0, right);
356 EXPECT_EQ(-2.0, bottom); 356 EXPECT_EQ(-2.0, bottom);
357 EXPECT_EQ(-2.0, top); 357 EXPECT_EQ(-2.0, top);
358 358
359 FPDFLink_CloseWebLinks(pagelink); 359 FPDFLink_CloseWebLinks(pagelink);
360 FPDFText_ClosePage(textpage); 360 FPDFText_ClosePage(textpage);
361 } 361 }
OLDNEW
« no previous file with comments | « fpdfsdk/src/fpdftext.cpp ('k') | fpdfsdk/src/fpdfview.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698