mirror of
https://pdfium.googlesource.com/pdfium
synced 2026-08-02 05:04:39 +08:00
Update comments referencing the "PDF 1.7 spec" to point to their corresponding tables and sections in the ISO 32000-1:2008 specification. Hopefully nobody will need to open pdf_reference_1-7.pdf anymore after this. TAG=agy CONV=e172d025-7526-4dbc-b51d-9fdabcf46a76 Change-Id: I80544bd4df3829cb9292199e9dac7d223b2377a1 Reviewed-on: https://pdfium-review.googlesource.com/c/pdfium/+/149091 Reviewed-by: Andy Phan <andyphan@chromium.org> Commit-Queue: Lei Zhang <thestig@chromium.org>
28 lines
755 B
C++
28 lines
755 B
C++
// Copyright 2018 The PDFium Authors
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef CONSTANTS_PAGE_OBJECT_H_
|
|
#define CONSTANTS_PAGE_OBJECT_H_
|
|
|
|
namespace pdfium {
|
|
namespace page_object {
|
|
|
|
// ISO 32000-1:2008 spec, table 30.
|
|
// Entries in a page object.
|
|
const char kType[] = "Type";
|
|
const char kParent[] = "Parent";
|
|
const char kResources[] = "Resources";
|
|
const char kMediaBox[] = "MediaBox";
|
|
const char kCropBox[] = "CropBox";
|
|
const char kBleedBox[] = "BleedBox";
|
|
const char kTrimBox[] = "TrimBox";
|
|
const char kArtBox[] = "ArtBox";
|
|
const char kContents[] = "Contents";
|
|
const char kRotate[] = "Rotate";
|
|
|
|
} // namespace page_object
|
|
} // namespace pdfium
|
|
|
|
#endif // CONSTANTS_PAGE_OBJECT_H_
|