xref: /aosp_15_r20/external/pdfium/constants/page_object.h (revision 3ac0a46f773bac49fa9476ec2b1cf3f8da5ec3a4)
1 // Copyright 2018 The PDFium Authors
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 CONSTANTS_PAGE_OBJECT_H_
6 #define CONSTANTS_PAGE_OBJECT_H_
7 
8 namespace pdfium {
9 namespace page_object {
10 
11 extern const char kType[];
12 extern const char kParent[];
13 extern const char kResources[];
14 extern const char kMediaBox[];
15 extern const char kCropBox[];
16 extern const char kBleedBox[];
17 extern const char kTrimBox[];
18 extern const char kArtBox[];
19 extern const char kContents[];
20 extern const char kRotate[];
21 
22 }  // namespace page_object
23 }  // namespace pdfium
24 
25 #endif  // CONSTANTS_PAGE_OBJECT_H_
26