1 // Copyright 2021 The PDFium Authors 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 #include "constants/appearance.h" 6 7 namespace pdfium { 8 namespace appearance { 9 10 // ISO 32000-1:2008 spec, table 189. 11 // Entries in an appearance characteristics dictionary. 12 const char kR[] = "R"; 13 const char kBC[] = "BC"; 14 const char kBG[] = "BG"; 15 const char kCA[] = "CA"; 16 const char kRC[] = "RC"; 17 const char kAC[] = "AC"; 18 const char kI[] = "I"; 19 const char kRI[] = "RI"; 20 const char kIX[] = "IX"; 21 22 } // namespace appearance 23 } // namespace pdfium 24