1 // Copyright 2018 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 CONSTANTS_PAGE_OBJECT_H_ 6 #define CONSTANTS_PAGE_OBJECT_H_ 7 8 namespace pdfium { 9 namespace page_object { 10 11 // PDF 1.7 spec, table 3.27. 12 // Entries in a page object. 13 14 constexpr char kType[] = "Type"; 15 constexpr char kParent[] = "Parent"; 16 constexpr char kResources[] = "Resources"; 17 constexpr char kMediaBox[] = "MediaBox"; 18 constexpr char kCropBox[] = "CropBox"; 19 constexpr char kBleedBox[] = "BleedBox"; 20 constexpr char kTrimBox[] = "TrimBox"; 21 constexpr char kArtBox[] = "ArtBox"; 22 constexpr char kContents[] = "Contents"; 23 constexpr char kRotate[] = "Rotate"; 24 25 } // namespace page_object 26 } // namespace pdfium 27 28 #endif // CONSTANTS_PAGE_OBJECT_H_ 29