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

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

Issue 1431593007: Merge to XFA: Fix all relative includes to public. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@xfa
Patch Set: IWYU, AKA fix build Created 5 years, 1 month 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"
7 #include "../../testing/embedder_test.h" 5 #include "../../testing/embedder_test.h"
6 #include "public/fpdf_text.h"
7 #include "public/fpdfview.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 337 matching lines...) Expand 10 before | Expand all | Expand 10 after
355 FPDFLink_GetRect(pagelink, -1, 0, &left, &top, &right, &bottom); 355 FPDFLink_GetRect(pagelink, -1, 0, &left, &top, &right, &bottom);
356 EXPECT_EQ(-2.0, left); 356 EXPECT_EQ(-2.0, left);
357 EXPECT_EQ(-2.0, right); 357 EXPECT_EQ(-2.0, right);
358 EXPECT_EQ(-2.0, bottom); 358 EXPECT_EQ(-2.0, bottom);
359 EXPECT_EQ(-2.0, top); 359 EXPECT_EQ(-2.0, top);
360 360
361 FPDFLink_CloseWebLinks(pagelink); 361 FPDFLink_CloseWebLinks(pagelink);
362 FPDFText_ClosePage(textpage); 362 FPDFText_ClosePage(textpage);
363 UnloadPage(page); 363 UnloadPage(page);
364 } 364 }
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