Hui Yingst | b4baceb | 2020-04-28 23:46:10 +0000 | [diff] [blame] | 1 | // Copyright 2020 The PDFium Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | #ifndef TESTING_EMBEDDER_TEST_CONSTANTS_H_ |
| 6 | #define TESTING_EMBEDDER_TEST_CONSTANTS_H_ |
| 7 | |
| 8 | namespace pdfium { |
| 9 | |
Hui Yingst | 30bfcc5 | 2020-07-27 23:54:40 +0000 | [diff] [blame] | 10 | // MD5 hash for rendering annotation_stamp_with_ap.pdf with annotations. |
| 11 | extern const char kAnnotationStampWithApChecksum[]; |
| 12 | |
Hui Yingst | b4baceb | 2020-04-28 23:46:10 +0000 | [diff] [blame] | 13 | // MD5 hash for rendering a 612x792 blank page. |
| 14 | extern const char kBlankPage612By792Checksum[]; |
| 15 | |
| 16 | // MD5 hash for rendering bug_890322.pdf. |
| 17 | extern const char kBug890322Checksum[]; |
| 18 | |
| 19 | // MD5 hash for rendering hello_world.pdf or bug_455199.pdf. |
| 20 | extern const char kHelloWorldChecksum[]; |
| 21 | |
| 22 | // MD5 hash for rendering hello_world.pdf after removing "Goodbye, world!". |
| 23 | extern const char kHelloWorldRemovedChecksum[]; |
| 24 | |
| 25 | // MD5 hash for rendering many_rectangles.pdf. |
| 26 | extern const char kManyRectanglesChecksum[]; |
| 27 | |
| 28 | // MD5 hash for rendering rectangles.pdf. |
| 29 | extern const char kRectanglesChecksum[]; |
| 30 | |
Hui Yingst | 30bfcc5 | 2020-07-27 23:54:40 +0000 | [diff] [blame] | 31 | // MD5 hash for rendering text_form.pdf. |
| 32 | extern const char kTextFormChecksum[]; |
| 33 | |
Hui Yingst | b4baceb | 2020-04-28 23:46:10 +0000 | [diff] [blame] | 34 | } // namespace pdfium |
| 35 | |
| 36 | #endif // TESTING_EMBEDDER_TEST_CONSTANTS_H_ |