xref: /aosp_15_r20/external/pdfium/constants/page_object.cpp (revision 3ac0a46f773bac49fa9476ec2b1cf3f8da5ec3a4)
1 // Copyright 2021 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 #include "constants/page_object.h"
6 
7 namespace pdfium {
8 namespace page_object {
9 
10 // PDF 1.7 spec, table 3.27.
11 // Entries in a page object.
12 const char kType[] = "Type";
13 const char kParent[] = "Parent";
14 const char kResources[] = "Resources";
15 const char kMediaBox[] = "MediaBox";
16 const char kCropBox[] = "CropBox";
17 const char kBleedBox[] = "BleedBox";
18 const char kTrimBox[] = "TrimBox";
19 const char kArtBox[] = "ArtBox";
20 const char kContents[] = "Contents";
21 const char kRotate[] = "Rotate";
22 
23 }  // namespace page_object
24 }  // namespace pdfium
25