blob: 41fe7908e4ee675e08cab336dc83b5dd36d58f2a [file] [log] [blame]
Hui Yingstb4baceb2020-04-28 23:46:10 +00001// 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
8namespace pdfium {
9
Hui Yingst30bfcc52020-07-27 23:54:40 +000010// MD5 hash for rendering annotation_stamp_with_ap.pdf with annotations.
11extern const char kAnnotationStampWithApChecksum[];
12
Hui Yingstb4baceb2020-04-28 23:46:10 +000013// MD5 hash for rendering a 612x792 blank page.
14extern const char kBlankPage612By792Checksum[];
15
16// MD5 hash for rendering bug_890322.pdf.
17extern const char kBug890322Checksum[];
18
19// MD5 hash for rendering hello_world.pdf or bug_455199.pdf.
20extern const char kHelloWorldChecksum[];
21
22// MD5 hash for rendering hello_world.pdf after removing "Goodbye, world!".
23extern const char kHelloWorldRemovedChecksum[];
24
25// MD5 hash for rendering many_rectangles.pdf.
26extern const char kManyRectanglesChecksum[];
27
28// MD5 hash for rendering rectangles.pdf.
29extern const char kRectanglesChecksum[];
30
Hui Yingst30bfcc52020-07-27 23:54:40 +000031// MD5 hash for rendering text_form.pdf.
32extern const char kTextFormChecksum[];
33
Hui Yingstb4baceb2020-04-28 23:46:10 +000034} // namespace pdfium
35
36#endif // TESTING_EMBEDDER_TEST_CONSTANTS_H_