// Copyright 2021 The PDFium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "constants/annotation_common.h" namespace pdfium::annotation { // PDF 1.7 spec, table 8.15. // Entries common to all annotation dictionaries. const char kType[] = …; const char kSubtype[] = …; const char kRect[] = …; const char kContents[] = …; const char kP[] = …; const char kNM[] = …; const char kM[] = …; const char kF[] = …; const char kAP[] = …; const char kAS[] = …; const char kBorder[] = …; const char kC[] = …; const char kStructParent[] = …; const char kOC[] = …; // Entries for polygon and polyline annotations. const char kVertices[] = …; // Entries for ink annotations const char kInkList[] = …; // Entries for line annotations const char kL[] = …; } // namespace pdfium::annotation