OLD | NEW |
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 Loading... |
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 } |
OLD | NEW |