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