1 // Copyright 2019 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_ANNOTATION_COMMON_H_ 6 #define CONSTANTS_ANNOTATION_COMMON_H_ 7 8 namespace pdfium { 9 namespace annotation { 10 11 // PDF 1.7 spec, table 8.15. 12 // Entries common to all annotation dictionaries. 13 14 constexpr char kType[] = "Type"; 15 constexpr char kSubtype[] = "Subtype"; 16 constexpr char kRect[] = "Rect"; 17 constexpr char kContents[] = "Contents"; 18 constexpr char kP[] = "P"; 19 constexpr char kNM[] = "NM"; 20 constexpr char kM[] = "M"; 21 constexpr char kF[] = "F"; 22 constexpr char kAP[] = "AP"; 23 constexpr char kAS[] = "AS"; 24 constexpr char kBorder[] = "Border"; 25 constexpr char kC[] = "C"; 26 constexpr char kStructParent[] = "StructParent"; 27 constexpr char kOC[] = "OC"; 28 29 } // namespace annotation 30 } // namespace pdfium 31 32 #endif // CONSTANTS_ANNOTATION_COMMON_H_ 33