blob: 8a41b8cf5dd10502a7d36847bed64f5396cf142d [file] [log] [blame]
Lei Zhangfc615c62018-06-08 20:40:15 +00001// 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
8namespace pdfium {
9namespace page_object {
10
11// PDF 1.7 spec, table 3.27.
12// Entries in a page object.
13
14constexpr char kType[] = "Type";
15constexpr char kParent[] = "Parent";
16constexpr char kResources[] = "Resources";
17constexpr char kMediaBox[] = "MediaBox";
18constexpr char kCropBox[] = "CropBox";
xlou618edef2018-10-12 23:37:41 +000019constexpr char kBleedBox[] = "BleedBox";
20constexpr char kTrimBox[] = "TrimBox";
Lei Zhangfc615c62018-06-08 20:40:15 +000021constexpr char kArtBox[] = "ArtBox";
22constexpr char kContents[] = "Contents";
23constexpr char kRotate[] = "Rotate";
24
25} // namespace page_object
26} // namespace pdfium
27
28#endif // CONSTANTS_PAGE_OBJECT_H_